Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Linker command/response files in make export #9596

Merged
merged 2 commits into from
Feb 7, 2019
Merged

Implement Linker command/response files in make export #9596

merged 2 commits into from
Feb 7, 2019

Conversation

vmedcy
Copy link
Contributor

@vmedcy vmedcy commented Feb 2, 2019

Description

This is a rebased version of 387747f from #7583 that can be applied to the latest master. Two other commits from that PR are no longer needed.

The original PR was closed since "it's really hard to find make > 3.81 for windows."
Compatible version of make utility for windows is documented in ARMmbed/mbed-os-5-docs#935
Cygwin make and MSYS2 make (both at version 4.2.1) are confirmed to work fine with makefiles produced by mbed export -i eclipse_gcc_arm.

The fix allows to build the mbed projects exported under Windows to environments that use the generated makefile: make_gcc_arm, make_iar, make_armc5, make_armc6, eclipse_gcc_arm, eclipse_iar, eclipse_armc5, vscode_gcc_arm, vscode_iar, vscode_armc5.

The error happens due to the list of the object files passed to the linker process exceeding Windows limit for the command line length.
Error code:
make (e=87): The parameter is incorrect.

Fixes the following issues:

Pull request type

[X] Fix
[ ] Refactor
[ ] Target update
[ ] Functionality change
[ ] Docs update
[ ] Test update
[ ] Breaking change

Reviewers

@theotherjimmy (who is the author of the original commit on the PR)

@ciarmcom ciarmcom requested review from theotherjimmy and a team February 2, 2019 18:00
@ciarmcom
Copy link
Member

ciarmcom commented Feb 2, 2019

@vmedcy, thank you for your changes.
@theotherjimmy @ARMmbed/mbed-os-tools @ARMmbed/mbed-os-maintainers please review.

$(file > $@.in, $(filter %.o, $^)) is not supported in GNU Make 3.81.
Create the linker response file with pipe redirect from echo command.
This is tested with Cygwin make and make 3.8.1 shipped with macOS.

Also, change the linker responce file name to .link_options.txt.
This is an internal file, not a build artifact.
@vmedcy
Copy link
Contributor Author

vmedcy commented Feb 4, 2019

The original commit uses $(file > $@.in, $(filter %.o, $^)) syntax - this is not compatible with GNU Make 3.81 commonly found on macOS.

I reworked the rule in Makefile template to use the echo redirect instead:
@echo "$(filter %.o, $^)" > .link_options.txt

I believe .link_options.txt is more appropriate name for the temporary response file: $(PROJECT).in looks like a public artifact.

I tested this with GNU Make 4.21 on Cygwin and MSYS2, as well as with make 3.81 on macOS.
On Windows, I also tested eclipse_iar and eclipse_armc5 to check the syntax of response file option.

@vmedcy
Copy link
Contributor Author

vmedcy commented Feb 4, 2019

ARMmbed/mbed-os-5-docs#935 documents the findings on make utilities compatible with mbed generated makefiles.

Please prioritize this for the next release: Cypress heavily relies on the ability to build and debug Mbed projects in external environments supported by Makefile, throwing make (e=87): The parameter is incorrect at Windows users is not really an option. There are still lots of customers using legacy operating systems.

@theotherjimmy
Copy link
Contributor

@vmedcy My understanding is that echo is interpenetrated by the terminal, so it will not get around the windows error 87. Do you have a test case that fails on master and passes with this branch?

@vmedcy
Copy link
Contributor Author

vmedcy commented Feb 5, 2019

@theotherjimmy:

echo is interpenetrated by the terminal, so it will not get around the windows error 87

echo "$(filter %.o, $^)" is executed by cygwin make, in cygwin shell, my guess is that standard Win32 interface for process execution is somehow bypassed. The same works with MSYS2. In contrary, linker process (arm-none-eabi-gcc.exe) is native Win32 executable, unable to handle the huge argument list.

Do you have a test case that fails on master and passes with this branch?

Yes, here is my test plan:

Prerequisites

Windows 10 x64, Mbed CLI 1.8.3, Cygwin x64, make 4.2.1, GNU Tools ARM Embedded 6 2017-q2-update, GNU MCU Eclipse.

Failing test case

mbed import mbed-os-example-blinky
cd mbed-os-example-blinky
mbed export -m K64F -i eclipse_gcc_arm

Open GNU MCU Eclipse and import mbed-os-example-blinky

Set Eclipse project PATH to C:/cygwin64/bin;C:/Program Files (x86)/GNU Tools ARM Embedded/6 2017-q2-update/bin
eclipsepath

Project -> Build project

...
link: mbed-os-example-blinky.elf
make[1]: execvp: arm-none-eabi-gcc: Argument list too long
make[1]: *** [/cygdrive/d/mbed-os-example-blinky/Makefile:1605: mbed-os-example-blinky.elf] Error 127

Attached build_fail.log

Passing test case

Switch back to Mbed CLI

cd mbed-os
git fetch origin pull/9596/head:make-cmd-files
git checkout make-cmd-files
cd ..
# re-export the project
mbed export -m K64F -i eclipse_gcc_arm

Switch back to GNU MCU Eclipse
Remove BUILD directory
Project -> Build project

...
link: mbed-os-example-blinky.elf
arm-none-eabi-objcopy -O binary mbed-os-example-blinky.elf mbed-os-example-blinky.bin

Attached build_pass.log

I also checked the build passes with GNU Make 3.81 on macOS High Sierra.

@theotherjimmy
Copy link
Contributor

my guess is that standard Win32 interface for process execution is somehow bypassed.

I'm willing to bet that it's a bash builtin. Perhaps we could switch this behavior based on make version? that way it's maximally compatible?

@theotherjimmy
Copy link
Contributor

@vmedcy I appreciate the detailed test case.

Copy link
Contributor

@theotherjimmy theotherjimmy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is an improvement: all places where make worked before will still work, and places where make failed before may begin to work.

@mbed-ci
Copy link

mbed-ci commented Feb 5, 2019

Test run: SUCCESS

Summary: 12 of 12 test jobs passed
Build number : 1
Build artifacts

@NirSonnenschein
Copy link
Contributor

@vmedcy , please add to the description the actual issue this fixes (not just a link).

@vmedcy
Copy link
Contributor Author

vmedcy commented Feb 6, 2019

@NirSonnenschein:

please add to the description the actual issue this fixes (not just a link).

I updated the PR description. I also added references to other issues addressed by this PR.

@0xc0170
Copy link
Contributor

0xc0170 commented Feb 7, 2019

Fixes the following issues

Quite number of issues! @cmonr will be surprised once he's back

@0xc0170 0xc0170 merged commit 7e18cc5 into ARMmbed:master Feb 7, 2019
@0xc0170
Copy link
Contributor

0xc0170 commented Feb 7, 2019

@vmedcy @theotherjimmy This is labeled as fix for 5.11.4. However, some windows users might be affected (as mentioned in ARMmbed/mbed-os-5-docs#935, gnuwin32 is not compatible. I have this installed locally as well). Thus this can be viewed as breaking change and should be in 5.12 rather with release notes mentioning this change?

@0xc0170
Copy link
Contributor

0xc0170 commented Feb 7, 2019

I've moved the release label to 5.12 , will wait for the confirmation and if this might affect users, we should add section to the release notes (following this doc update ARMmbed/mbed-os-5-docs#933)

@theotherjimmy
Copy link
Contributor

@0xc0170 Please move this back to a patch release. As I said before:

all places where make worked before will still work, and places where make failed before may begin to work.

This does not require make version >=4, as it will work with make 3.81.

@0xc0170
Copy link
Contributor

0xc0170 commented Feb 7, 2019

Done, 5.11.4

@vidavidorra
Copy link
Contributor

@vmedcy @theotherjimmy Appologies to be posting in a closed PR, but will this also work for cmake (cmake_gcc_arm) exports?

@vmedcy
Copy link
Contributor Author

vmedcy commented Feb 18, 2019

@vidavidorra:

will this also work for cmake (cmake_gcc_arm) exports

No. This change is only applicable to makefile based exporters. CMake export produces the projects that can be compiled and linked on Windows without path length issues. I tested with Ninja generator:

# prerequisite: arm-none-eabi-gcc, cmake and ninja in PATH
mbed export -i cmake_gcc_arm -m K64F
cmake . -G Ninja
ninja
...
[730/730] Linking CXX executable mbed-os-example-blinky
-- built: C:/mbed/mbed-os-example-blinky/mbed-os-example-blinky.hex

By the way, ninja build is much faster than makefile build.

@JarekParal
Copy link
Contributor

JarekParal commented Mar 26, 2019

Could I ask you: Is this already available in Online compiler Mbed export or Mbed CLI for Windows? I tried both and the compilation after exporting to GNU ARM Eclipse didn't work for me on Windows 10 1809 (the newest Mbed CLI for WIndows) and tested on board FRDM-K64F and FRDM-K66F.
I still get the compilation error in the Eclipse IDE during the compilation:

...

Building file: ../main.cpp
Invoking: Cross ARM C++ Compiler
Finished building: ../mbed-os/components/802.15.4_RF/atmel-rf-driver/source/NanostackRfPhyAtmel.cpp
arm-none-eabi-g++ -mcpu=cortex-m4 -mthumb -mfloat-abi=softfp -mfpu=fpv4-sp-d16 -O0 -fmessage-length=0 -ffunction-sections -fdata-sections -fno-builtin -funsigned-char -fno-delete-null-pointer-checks -fomit-frame-pointer -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers  -g3 -DTARGET_PSA -DDEVICE_EMAC=1 -D__MBED__=1 -DDEVICE_I2CSLAVE=1 -DTARGET_LIKE_MBED -DTARGET_Freescale -DDEVICE_PORTINOUT=1 -DTARGET_RTOS_M4_M7 -DDEVICE_RTC=1 -DCOMPONENT_PSA_SRV_EMUL=1 -D__CMSIS_RTOS -DFSL_RTOS_MBED -DCPU_MK66FN2M0VMD18 -DTOOLCHAIN_GCC -DCOMPONENT_SD=1 -DTARGET_CORTEX_M -DTARGET_KSDK2_MCUS -DTARGET_LIKE_CORTEX_M4 -DDEVICE_ANALOGOUT=1 -DTARGET_M4 -DCOMPONENT_PSA_SRV_IMPL=1 -DDEVICE_LPTICKER=1 -DDEVICE_SERIAL=1 -DCOMPONENT_FLASHIAP=1 -DDEVICE_INTERRUPTIN=1 -DTARGET_K66F -DTARGET_CORTEX -DDEVICE_I2C=1 -DDEVICE_PORTOUT=1 -D__CORTEX_M4 -DDEVICE_STDIO_MESSAGES=1 -D__FPU_PRESENT=1 -DTARGET_FF_ARDUINO -DDEVICE_PORTIN=1 -DTARGET_RELEASE -DCOMPONENT_NSPE=1 -DDEVICE_SERIAL_FC=1 -DDEVICE_USTICKER=1 -DDEVICE_TRNG=1 -D__MBED_CMSIS_RTOS_CM -DDEVICE_SLEEP=1 -DTOOLCHAIN_GCC_ARM -DMBED_BUILD_TIMESTAMP=1553587638.31 -DTARGET_MCUXpresso_MCUS -DDEVICE_SPI=1 -DDEVICE_SPISLAVE=1 -DDEVICE_ANALOGIN=1 -DDEVICE_PWMOUT=1 -DTARGET_Freescale_EMAC -DDEVICE_FLASH=1 -DTARGET_FRDM -DARM_MATH_CM4 -I"F:/k66/" -I"F:/k66/mbed-os" -I"F:/k66/mbed-os/cmsis" -I"F:/k66/mbed-os/cmsis/TARGET_CORTEX_M" -I"F:/k66/mbed-os/components" -I"F:/k66/mbed-os/components/802.15.4_RF" -I"F:/k66/mbed-os/components/802.15.4_RF/atmel-rf-driver" -I"F:/k66/mbed-os/components/802.15.4_RF/atmel-rf-driver/atmel-rf-driver" -I"F:/k66/mbed-os/components/802.15.4_RF/atmel-rf-driver/source" -I"F:/k66/mbed-os/components/802.15.4_RF/mcr20a-rf-driver" -I"F:/k66/mbed-os/components/802.15.4_RF/mcr20a-rf-driver/mcr20a-rf-driver" -I"F:/k66/mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source" -I"F:/k66/mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver" -I"F:/k66/mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source" -I"F:/k66/mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/stm-s2lp-rf-driver" -I"F:/k66/mbed-os/components/TARGET_PSA" -I"F:/k66/mbed-os/components/TARGET_PSA/services" -I"F:/k66/mbed-os/components/TARGET_PSA/services/crypto" -I"F:/k66/mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage" -I"F:/k66/mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_IMPL" -I"F:/k66/mbed-os/components/TARGET_PSA/spm" -I"F:/k66/mbed-os/components/storage/blockdevice/COMPONENT_FLASHIAP" -I"F:/k66/mbed-os/components/storage/blockdevice/COMPONENT_SD" -I"F:/k66/mbed-os/components/wifi" -I"F:/k66/mbed-os/components/wifi/esp8266-driver" -I"F:/k66/mbed-os/components/wifi/esp8266-driver/ESP8266" -I"F:/k66/mbed-os/drivers" -I"F:/k66/mbed-os/events" -I"F:/k66/mbed-os/events/equeue" -I"F:/k66/mbed-os/features" -I"F:/k66/mbed-os/features/cellular" -I"F:/k66/mbed-os/features/cellular/framework" -I"F:/k66/mbed-os/features/cellular/framework/API" -I"F:/k66/mbed-os/features/cellular/framework/AT" -I"F:/k66/mbed-os/features/cellular/framework/common" -I"F:/k66/mbed-os/features/cellular/framework/device" -I"F:/k66/mbed-os/features/cellular/framework/targets" -I"F:/k66/mbed-os/features/cellular/framework/targets/GEMALTO" -I"F:/k66/mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION" -I"F:/k66/mbed-os/features/cellular/framework/targets/MultiTech" -I"F:/k66/mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano" -I"F:/k66/mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP" -I"F:/k66/mbed-os/features/cellular/framework/targets/QUECTEL" -I"F:/k66/mbed-os/features/cellular/framework/targets/QUECTEL/BC95" -I"F:/k66/mbed-os/features/cellular/framework/targets/QUECTEL/BG96" -I"F:/k66/mbed-os/features/cellular/framework/targets/QUECTEL/M26" -I"F:/k66/mbed-os/features/cellular/framework/targets/QUECTEL/UG96" -I"F:/k66/mbed-os/features/cellular/framework/targets/TELIT" -I"F:/k66/mbed-os/features/cellular/framework/targets/TELIT/HE910" -I"F:/k66/mbed-os/features/cellular/framework/targets/UBLOX" -I"F:/k66/mbed-os/features/cellular/framework/targets/UBLOX/AT" -I"F:/k66/mbed-os/features/cellular/framework/targets/UBLOX/PPP" -I"F:/k66/mbed-os/features/device_key" -I"F:/k66/mbed-os/features/device_key/source" -I"F:/k66/mbed-os/features/frameworks" -I"F:/k66/mbed-os/features/frameworks/greentea-client" -I"F:/k66/mbed-os/features/frameworks/greentea-client/greentea-client" -I"F:/k66/mbed-os/features/frameworks/mbed-client-cli" -I"F:/k66/mbed-os/features/frameworks/mbed-client-cli/mbed-client-cli" -I"F:/k66/mbed-os/features/frameworks/mbed-client-randlib" -I"F:/k66/mbed-os/features/frameworks/mbed-client-randlib/mbed-client-randlib" -I"F:/k66/mbed-os/features/frameworks/mbed-client-randlib/mbed-client-randlib/platform" -I"F:/k66/mbed-os/features/frameworks/mbed-coap" -I"F:/k66/mbed-os/features/frameworks/mbed-coap/mbed-coap" -I"F:/k66/mbed-os/features/frameworks/mbed-coap/source" -I"F:/k66/mbed-os/features/frameworks/mbed-coap/source/include" -I"F:/k66/mbed-os/features/frameworks/mbed-trace" -I"F:/k66/mbed-os/features/frameworks/mbed-trace/mbed-trace" -I"F:/k66/mbed-os/features/frameworks/nanostack-libservice" -I"F:/k66/mbed-os/features/frameworks/nanostack-libservice/mbed-client-libservice" -I"F:/k66/mbed-os/features/frameworks/nanostack-libservice/mbed-client-libservice/platform" -I"F:/k66/mbed-os/features/frameworks/unity" -I"F:/k66/mbed-os/features/frameworks/unity/unity" -I"F:/k66/mbed-os/features/frameworks/utest" -I"F:/k66/mbed-os/features/frameworks/utest/utest" -I"F:/k66/mbed-os/features/lorawan" -I"F:/k66/mbed-os/features/lorawan/lorastack" -I"F:/k66/mbed-os/features/lorawan/lorastack/mac" -I"F:/k66/mbed-os/features/lorawan/lorastack/phy" -I"F:/k66/mbed-os/features/lorawan/system" -I"F:/k66/mbed-os/features/lwipstack" -I"F:/k66/mbed-os/features/lwipstack/lwip" -I"F:/k66/mbed-os/features/lwipstack/lwip-sys" -I"F:/k66/mbed-os/features/lwipstack/lwip-sys/arch" -I"F:/k66/mbed-os/features/lwipstack/lwip/src" -I"F:/k66/mbed-os/features/lwipstack/lwip/src/include" -I"F:/k66/mbed-os/features/lwipstack/lwip/src/include/lwip" -I"F:/k66/mbed-os/features/lwipstack/lwip/src/include/lwip/priv" -I"F:/k66/mbed-os/features/lwipstack/lwip/src/include/lwip/prot" -I"F:/k66/mbed-os/features/lwipstack/lwip/src/include/netif" -I"F:/k66/mbed-os/features/lwipstack/lwip/src/include/netif/ppp" -I"F:/k66/mbed-os/features/lwipstack/lwip/src/include/netif/ppp/polarssl" -I"F:/k66/mbed-os/features/mbedtls" -I"F:/k66/mbed-os/features/mbedtls/inc" -I"F:/k66/mbed-os/features/mbedtls/inc/mbedtls" -I"F:/k66/mbed-os/features/mbedtls/inc/psa" -I"F:/k66/mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL" -I"F:/k66/mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/COMPONENT_NSPE" -I"F:/k66/mbed-os/features/mbedtls/platform" -I"F:/k66/mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL" -I"F:/k66/mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/inc" -I"F:/k66/mbed-os/features/mbedtls/platform/inc" -I"F:/k66/mbed-os/features/nanostack" -I"F:/k66/mbed-os/features/nanostack/coap-service" -I"F:/k66/mbed-os/features/nanostack/coap-service/coap-service" -I"F:/k66/mbed-os/features/nanostack/coap-service/source" -I"F:/k66/mbed-os/features/nanostack/coap-service/source/include" -I"F:/k66/mbed-os/features/nanostack/mbed-mesh-api" -I"F:/k66/mbed-os/features/nanostack/mbed-mesh-api/mbed-mesh-api" -I"F:/k66/mbed-os/features/nanostack/mbed-mesh-api/source" -I"F:/k66/mbed-os/features/nanostack/mbed-mesh-api/source/include" -I"F:/k66/mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos" -I"F:/k66/mbed-os/features/nanostack/nanostack-interface" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack-eventloop" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack-eventloop/nanostack-event-loop" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack-eventloop/nanostack-event-loop/platform" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/nanostack" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/nanostack/platform" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Fragmentation" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Mesh" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ND" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/NVM" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ws" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/BorderRouter" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Core" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Core/include" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_Server" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_client" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/MAC" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/MLE" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/MPL" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/Include" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/RPL" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Security" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Security/Common" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Neighbor_cache" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Trickle" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/blacklist" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/etx" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fnv_hash" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/load_balance" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mac_neighbor_table" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/compiler" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/port/cpu" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/dns" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/serial" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/nd_proxy" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/pan_blacklist" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/whiteboard" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/configs" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/configs/base" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/libNET" -I"F:/k66/mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src" -I"F:/k66/mbed-os/features/netsocket" -I"F:/k66/mbed-os/features/netsocket/cellular" -I"F:/k66/mbed-os/features/netsocket/cellular/generic_modem_driver" -I"F:/k66/mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC" -I"F:/k66/mbed-os/features/nfc" -I"F:/k66/mbed-os/features/nfc/acore" -I"F:/k66/mbed-os/features/nfc/acore/acore" -I"F:/k66/mbed-os/features/nfc/controllers" -I"F:/k66/mbed-os/features/nfc/nfc" -I"F:/k66/mbed-os/features/nfc/nfc/ndef" -I"F:/k66/mbed-os/features/nfc/nfc/ndef/common" -I"F:/k66/mbed-os/features/nfc/stack" -I"F:/k66/mbed-os/features/nfc/stack/ndef" -I"F:/k66/mbed-os/features/nfc/stack/platform" -I"F:/k66/mbed-os/features/nfc/stack/tech" -I"F:/k66/mbed-os/features/nfc/stack/tech/iso7816" -I"F:/k66/mbed-os/features/nfc/stack/tech/isodep" -I"F:/k66/mbed-os/features/nfc/stack/tech/type4" -I"F:/k66/mbed-os/features/nfc/stack/transceiver" -I"F:/k66/mbed-os/features/nfc/stack/transceiver/pn512" -I"F:/k66/mbed-os/features/storage" -I"F:/k66/mbed-os/features/storage/blockdevice" -I"F:/k66/mbed-os/features/storage/filesystem" -I"F:/k66/mbed-os/features/storage/filesystem/fat" -I"F:/k66/mbed-os/features/storage/filesystem/fat/ChaN" -I"F:/k66/mbed-os/features/storage/filesystem/littlefs" -I"F:/k66/mbed-os/features/storage/filesystem/littlefs/littlefs" -I"F:/k66/mbed-os/features/storage/kvstore" -I"F:/k66/mbed-os/features/storage/kvstore/conf" -I"F:/k66/mbed-os/features/storage/kvstore/direct_access_devicekey" -I"F:/k66/mbed-os/features/storage/kvstore/filesystemstore" -I"F:/k66/mbed-os/features/storage/kvstore/global_api" -I"F:/k66/mbed-os/features/storage/kvstore/include" -I"F:/k66/mbed-os/features/storage/kvstore/kv_map" -I"F:/k66/mbed-os/features/storage/kvstore/securestore" -I"F:/k66/mbed-os/features/storage/kvstore/tdbstore" -I"F:/k66/mbed-os/features/storage/nvstore" -I"F:/k66/mbed-os/features/storage/nvstore/source" -I"F:/k66/mbed-os/features/storage/system_storage" -I"F:/k66/mbed-os/hal" -I"F:/k66/mbed-os/hal/storage_abstraction" -I"F:/k66/mbed-os/platform" -I"F:/k66/mbed-os/rtos" -I"F:/k66/mbed-os/rtos/TARGET_CORTEX" -I"F:/k66/mbed-os/rtos/TARGET_CORTEX/rtx4" -I"F:/k66/mbed-os/rtos/TARGET_CORTEX/rtx5" -I"F:/k66/mbed-os/rtos/TARGET_CORTEX/rtx5/Include" -I"F:/k66/mbed-os/rtos/TARGET_CORTEX/rtx5/RTX" -I"F:/k66/mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Config" -I"F:/k66/mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Include" -I"F:/k66/mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source" -I"F:/k66/mbed-os/targets/TARGET_Freescale" -I"F:/k66/mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS" -I"F:/k66/mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F" -I"F:/k66/mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM" -I"F:/k66/mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device" -I"F:/k66/mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers" -I"F:/k66/mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api" -include"F:/k66/mbed_config.h" -std=gnu++98 -fabi-version=0 -fno-exceptions -fno-rtti -Wvla -DMBED_DEBUG -DMBED_TRAP_ERRORS_ENABLED=1 -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -MMD -MP -MF"main.d" -MT"main.o" -c -o "main.o" "../main.cpp"
 
Finished building: ../mbed-os/cmsis/TARGET_CORTEX_M/mbed_tz_context.c
 
Finished building: ../mbed-os/cmsis/TARGET_CORTEX_M/mbed_fault_handler.c
 
Finished building: ../main.cpp
 
Building target: k66.elf
Invoking: Cross ARM C++ Linker
arm-none-eabi-g++ -mcpu=cortex-m4 -mthumb -mfloat-abi=softfp -mfpu=fpv4-sp-d16 -O0 -fmessage-length=0 -ffunction-sections -fdata-sections -fno-builtin -funsigned-char -fno-delete-null-pointer-checks -fomit-frame-pointer -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers  -g3 -T "F:/k66/Debug/linker-script-debug.ld" -Xlinker --gc-sections -Xlinker --wrap=main -Xlinker --wrap=_malloc_r -Xlinker --wrap=_free_r -Xlinker --wrap=_realloc_r -Xlinker --wrap=_memalign_r -Xlinker --wrap=_calloc_r -Xlinker --wrap=exit -Xlinker --wrap=atexit -Wl,-Map,"k66.map" -DMBED_DEBUG -DMBED_TRAP_ERRORS_ENABLED=1 -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -Wl,-n -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -DMBED_BOOT_STACK_SIZE=1024 -Wl,--start-group -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys -Wl,--end-group -o "k66.elf"  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/dma_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/flash_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/qspi_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_adc16.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_clock.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_cmp.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_cmt.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_crc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dac.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dmamux.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dspi.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dspi_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_enet.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_ewm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flash.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flexbus.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flexcan.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_ftm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_gpio.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_i2c.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_i2c_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_llwu.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lmem_cache.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lptmr.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lpuart.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lpuart_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pdb.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pit.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pmc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rcm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rnga.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rtc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sai.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sai_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sdhc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sdramc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sim.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_smc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sysmpu.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_tpm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_tsi_v4.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_uart.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_uart_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_vref.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_wdog.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/TOOLCHAIN_GCC_ARM/startup_MK66F18.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/system_MK66F18.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralPins.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/crc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/fsl_clock_config.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/fsl_phy.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/mbed_overrides.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/trng_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/fsl_common.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/Source/os_systick.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/Source/os_tick_ptim.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/TOOLCHAIN_GCC/TARGET_RTOS_M4_M7/irq_cm4f.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_delay.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_evflags.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_evr.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_kernel.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_lib.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_memory.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_mempool.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_msgqueue.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_mutex.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_semaphore.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_system.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_thread.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_timer.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Config/RTX_Config.o  ./mbed-os/rtos/TARGET_CORTEX/rtx4/cmsis_os1.o  ./mbed-os/rtos/TARGET_CORTEX/TOOLCHAIN_GCC_ARM/mbed_boot_gcc_arm.o  ./mbed-os/rtos/TARGET_CORTEX/SysTimer.o ./mbed-os/rtos/TARGET_CORTEX/mbed_boot.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtos_rtx.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtx_handlers.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtx_idle.o  ./mbed-os/rtos/ConditionVariable.o ./mbed-os/rtos/EventFlags.o ./mbed-os/rtos/Kernel.o ./mbed-os/rtos/Mutex.o ./mbed-os/rtos/RtosTimer.o ./mbed-os/rtos/Semaphore.o ./mbed-os/rtos/ThisThread.o ./mbed-os/rtos/Thread.o  ./mbed-os/platform/ATCmdParser.o ./mbed-os/platform/CThunkBase.o ./mbed-os/platform/CallChain.o ./mbed-os/platform/FileBase.o ./mbed-os/platform/FileHandle.o ./mbed-os/platform/FilePath.o ./mbed-os/platform/FileSystemHandle.o ./mbed-os/platform/LocalFileSystem.o ./mbed-os/platform/Stream.o ./mbed-os/platform/mbed_alloc_wrappers.o ./mbed-os/platform/mbed_application.o ./mbed-os/platform/mbed_assert.o ./mbed-os/platform/mbed_board.o ./mbed-os/platform/mbed_critical.o ./mbed-os/platform/mbed_error.o ./mbed-os/platform/mbed_error_hist.o ./mbed-os/platform/mbed_interface.o ./mbed-os/platform/mbed_mem_trace.o ./mbed-os/platform/mbed_mktime.o ./mbed-os/platform/mbed_mpu_mgmt.o ./mbed-os/platform/mbed_poll.o ./mbed-os/platform/mbed_retarget.o ./mbed-os/platform/mbed_rtc_time.o ./mbed-os/platform/mbed_sdk_boot.o ./mbed-os/platform/mbed_semihost_api.o ./mbed-os/platform/mbed_sleep_manager.o ./mbed-os/platform/mbed_stats.o ./mbed-os/platform/mbed_wait_api_no_rtos.o ./mbed-os/platform/mbed_wait_api_rtos.o  ./mbed-os/hal/mpu/mbed_mpu_v7m.o ./mbed-os/hal/mpu/mbed_mpu_v8m.o  ./mbed-os/hal/LowPowerTickerWrapper.o ./mbed-os/hal/mbed_critical_section_api.o ./mbed-os/hal/mbed_flash_api.o ./mbed-os/hal/mbed_gpio.o ./mbed-os/hal/mbed_itm_api.o ./mbed-os/hal/mbed_lp_ticker_api.o ./mbed-os/hal/mbed_lp_ticker_wrapper.o ./mbed-os/hal/mbed_pinmap_common.o ./mbed-os/hal/mbed_ticker_api.o ./mbed-os/hal/mbed_us_ticker_api.o  ./mbed-os/features/storage/system_storage/SystemStorage.o  ./mbed-os/features/storage/nvstore/source/nvstore.o  ./mbed-os/features/storage/kvstore/tdbstore/TDBStore.o  ./mbed-os/features/storage/kvstore/securestore/SecureStore.o  ./mbed-os/features/storage/kvstore/kv_map/KVMap.o  ./mbed-os/features/storage/kvstore/global_api/kvstore_global_api.o  ./mbed-os/features/storage/kvstore/filesystemstore/FileSystemStore.o  ./mbed-os/features/storage/kvstore/direct_access_devicekey/DirectAccessDevicekey.o  ./mbed-os/features/storage/kvstore/conf/kv_config.o  ./mbed-os/features/storage/filesystem/littlefs/littlefs/lfs.o ./mbed-os/features/storage/filesystem/littlefs/littlefs/lfs_util.o  ./mbed-os/features/storage/filesystem/littlefs/LittleFileSystem.o  ./mbed-os/features/storage/filesystem/fat/ChaN/ff.o ./mbed-os/features/storage/filesystem/fat/ChaN/ffunicode.o  ./mbed-os/features/storage/filesystem/fat/FATFileSystem.o  ./mbed-os/features/storage/filesystem/Dir.o ./mbed-os/features/storage/filesystem/File.o ./mbed-os/features/storage/filesystem/FileSystem.o  ./mbed-os/features/storage/blockdevice/BufferedBlockDevice.o ./mbed-os/features/storage/blockdevice/ChainingBlockDevice.o ./mbed-os/features/storage/blockdevice/ExhaustibleBlockDevice.o ./mbed-os/features/storage/blockdevice/FlashSimBlockDevice.o ./mbed-os/features/storage/blockdevice/HeapBlockDevice.o ./mbed-os/features/storage/blockdevice/MBRBlockDevice.o ./mbed-os/features/storage/blockdevice/ObservingBlockDevice.o ./mbed-os/features/storage/blockdevice/ProfilingBlockDevice.o ./mbed-os/features/storage/blockdevice/ReadOnlyBlockDevice.o ./mbed-os/features/storage/blockdevice/SlicingBlockDevice.o  ./mbed-os/features/nfc/stack/transceiver/pn512/pn512.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_cmd.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_hw.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_irq.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_poll.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_registers.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_rf.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_timer.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_transceive.o  ./mbed-os/features/nfc/stack/transceiver/transceiver.o  ./mbed-os/features/nfc/stack/tech/type4/type4_target.o  ./mbed-os/features/nfc/stack/tech/isodep/isodep_target.o  ./mbed-os/features/nfc/stack/tech/iso7816/iso7816.o ./mbed-os/features/nfc/stack/tech/iso7816/iso7816_app.o  ./mbed-os/features/nfc/stack/platform/nfc_scheduler.o ./mbed-os/features/nfc/stack/platform/nfc_transport.o  ./mbed-os/features/nfc/stack/ndef/ndef.o  ./mbed-os/features/nfc/source/nfc/ndef/common/Mime.o ./mbed-os/features/nfc/source/nfc/ndef/common/SimpleMessageParser.o ./mbed-os/features/nfc/source/nfc/ndef/common/Text.o ./mbed-os/features/nfc/source/nfc/ndef/common/URI.o ./mbed-os/features/nfc/source/nfc/ndef/common/util.o  ./mbed-os/features/nfc/source/nfc/ndef/MessageBuilder.o ./mbed-os/features/nfc/source/nfc/ndef/MessageParser.o ./mbed-os/features/nfc/source/nfc/ndef/RecordParser.o  ./mbed-os/features/nfc/source/nfc/NFCController.o ./mbed-os/features/nfc/source/nfc/NFCControllerDriver.o ./mbed-os/features/nfc/source/nfc/NFCEEPROM.o ./mbed-os/features/nfc/source/nfc/NFCEEPROMDriver.o ./mbed-os/features/nfc/source/nfc/NFCNDEFCapable.o ./mbed-os/features/nfc/source/nfc/NFCRemoteEndpoint.o ./mbed-os/features/nfc/source/nfc/NFCRemoteInitiator.o ./mbed-os/features/nfc/source/nfc/NFCTarget.o ./mbed-os/features/nfc/source/nfc/Type4RemoteInitiator.o  ./mbed-os/features/nfc/source/controllers/PN512Driver.o ./mbed-os/features/nfc/source/controllers/PN512SPITransportDriver.o ./mbed-os/features/nfc/source/controllers/PN512TransportDriver.o  ./mbed-os/features/nfc/acore/source/ac_buffer.o ./mbed-os/features/nfc/acore/source/ac_buffer_builder.o ./mbed-os/features/nfc/acore/source/ac_buffer_reader.o ./mbed-os/features/nfc/acore/source/ac_stream.o  ./mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC/TARGET_K66F/hardware_init_MK66F18.o  ./mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC/kinetis_emac.o  ./mbed-os/features/netsocket/cellular/generic_modem_driver/OnboardCellularInterface.o ./mbed-os/features/netsocket/cellular/generic_modem_driver/PPPCellularInterface.o ./mbed-os/features/netsocket/cellular/generic_modem_driver/UARTCellularInterface.o  ./mbed-os/features/netsocket/DTLSSocket.o ./mbed-os/features/netsocket/DTLSSocketWrapper.o ./mbed-os/features/netsocket/EMACInterface.o ./mbed-os/features/netsocket/EMACMemoryManager.o ./mbed-os/features/netsocket/EthernetInterface.o ./mbed-os/features/netsocket/InternetSocket.o ./mbed-os/features/netsocket/NetworkInterface.o ./mbed-os/features/netsocket/NetworkInterfaceDefaults.o ./mbed-os/features/netsocket/NetworkStack.o ./mbed-os/features/netsocket/SocketAddress.o ./mbed-os/features/netsocket/SocketStats.o ./mbed-os/features/netsocket/TCPServer.o ./mbed-os/features/netsocket/TCPSocket.o ./mbed-os/features/netsocket/TLSSocket.o ./mbed-os/features/netsocket/TLSSocketWrapper.o ./mbed-os/features/netsocket/UDPSocket.o ./mbed-os/features/netsocket/WiFiAccessPoint.o ./mbed-os/features/netsocket/nsapi_dns.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/multicast_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_6lowpan_parameter_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_ipv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_load_balance.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_mle.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_rpl.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_short_address_extension.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_test.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/ns_net.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/socket_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/dhcp_service_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/libDHCPv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/libDHCPv6_server.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack/ipv6_routing_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack/protocol_ipv6.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/whiteboard/whiteboard.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/isqrt.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/ns_crc.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/ns_file_system.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/pan_blacklist/pan_blacklist.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/nd_proxy/nd_proxy.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_buffer.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_frame_counter_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_interface.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_security.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_fnet_events.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_fnet_port.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_mdns_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mac_neighbor_table/mac_neighbor_table.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/load_balance/load_balance.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fnv_hash/fnv_hash.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/channel_list.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_channel.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_common.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_configuration_interface.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_statistics.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_ws_empty_functions.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/etx/etx.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/blacklist/blacklist.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Trickle/trickle.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/SHA256_Lib/ns_sha256.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/SHA256_Lib/shalib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Neighbor_cache/neighbor_cache.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/mbedOS/aes_mbedtls_adapter.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/ccm_security.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS/tls_ccm_crypt.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS/tls_lib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/eap_protocol.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_avp.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_eap_header.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_header.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_relay_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_server.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/Common/security_lib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_control.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_data.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_downward.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_mrhof.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_objective.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_of0.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_policy.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_upward.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_core.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_core_sleep.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_stats.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_timer.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MPL/mpl.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MLE/mle.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MLE/mle_tlv.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf/virtual_rf_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf/virtual_rf_driver.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/serial/serial_mac_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/ethernet/ethernet_mac_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_fhss_callbacks.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_filter.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_header_helper_functions.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_indirect_data.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_mcps_sap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_mlme.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_pd_sap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_security_mib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/sw_mac.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/rf_driver_storage.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_client/dhcpv6_client_service.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_Server/DHCPv6_Server_service.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/address.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/buffer_dyn.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/ns_socket.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/sockbuf.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6_prefix.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6_radv.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_flow.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_fragmentation.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_resolution.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/mld.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/tcp.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/udp.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/BorderRouter/border_router.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ws/ws_empty_functions.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_bbr_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_beacon.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_border_router_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_commissioning_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_commissioning_if.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_common.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_dhcpv6_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_diagnostic.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_discovery.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_host_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_joiner_application.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_leader_service.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_lowpower_private_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_if.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_mdns.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_meshcop_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_mle_message_handler.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_nd.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_neighbor_class.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_net_config_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_data_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_data_storage.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_synch.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_nvm_store.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_resolution_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_resolution_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_router_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_routing.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_test_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/NVM/nwk_nvm.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ND/nd_router_object.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Mesh/mesh.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/beacon_handler.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_data_poll.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_helper.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_ie_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_pairwise_key.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_response_handler.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/6lowpan_iphc.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/iphc_compress.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/iphc_decompress.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/lowpan_context.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Fragmentation/cipv6_fragmenter.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/network_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan_interface.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/adaptation_interface.o  ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/event.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/minar_hal_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/ns_timeout.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/ns_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/system_timer.o  ./mbed-os/features/nanostack/nanostack-interface/Nanostack.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/nvm/nvm_ram.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/cs_nvm/cs_nvm.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_fhss_timer.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_interrupt.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_random.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_timer.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop_mbed.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop_mutex.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_hal_init.o  ./mbed-os/features/nanostack/mbed-mesh-api/source/CallbackHandler.o ./mbed-os/features/nanostack/mbed-mesh-api/source/LoWPANNDInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/MeshInterfaceNanostack.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEMACInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEthernetInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackMemoryManager.o ./mbed-os/features/nanostack/mbed-mesh-api/source/ThreadInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/WisunInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/ethernet_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/mesh_system.o ./mbed-os/features/nanostack/mbed-mesh-api/source/nd_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/thread_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/wisun_tasklet.o  ./mbed-os/features/nanostack/coap-service/source/coap_connection_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_message_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_security_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_service_api.o  ./mbed-os/features/mbedtls/targets/hash_wrappers.o  ./mbed-os/features/mbedtls/src/aes.o ./mbed-os/features/mbedtls/src/aesni.o ./mbed-os/features/mbedtls/src/arc4.o ./mbed-os/features/mbedtls/src/aria.o ./mbed-os/features/mbedtls/src/asn1parse.o ./mbed-os/features/mbedtls/src/asn1write.o ./mbed-os/features/mbedtls/src/base64.o ./mbed-os/features/mbedtls/src/bignum.o ./mbed-os/features/mbedtls/src/blowfish.o ./mbed-os/features/mbedtls/src/camellia.o ./mbed-os/features/mbedtls/src/ccm.o ./mbed-os/features/mbedtls/src/certs.o ./mbed-os/features/mbedtls/src/chacha20.o ./mbed-os/features/mbedtls/src/chachapoly.o ./mbed-os/features/mbedtls/src/cipher.o ./mbed-os/features/mbedtls/src/cipher_wrap.o ./mbed-os/features/mbedtls/src/cmac.o ./mbed-os/features/mbedtls/src/ctr_drbg.o ./mbed-os/features/mbedtls/src/debug.o ./mbed-os/features/mbedtls/src/des.o ./mbed-os/features/mbedtls/src/dhm.o ./mbed-os/features/mbedtls/src/ecdh.o ./mbed-os/features/mbedtls/src/ecdsa.o ./mbed-os/features/mbedtls/src/ecjpake.o ./mbed-os/features/mbedtls/src/ecp.o ./mbed-os/features/mbedtls/src/ecp_curves.o ./mbed-os/features/mbedtls/src/entropy.o ./mbed-os/features/mbedtls/src/entropy_poll.o ./mbed-os/features/mbedtls/src/error.o ./mbed-os/features/mbedtls/src/gcm.o ./mbed-os/features/mbedtls/src/havege.o ./mbed-os/features/mbedtls/src/hkdf.o ./mbed-os/features/mbedtls/src/hmac_drbg.o ./mbed-os/features/mbedtls/src/md.o ./mbed-os/features/mbedtls/src/md2.o ./mbed-os/features/mbedtls/src/md4.o ./mbed-os/features/mbedtls/src/md5.o ./mbed-os/features/mbedtls/src/md_wrap.o ./mbed-os/features/mbedtls/src/memory_buffer_alloc.o ./mbed-os/features/mbedtls/src/net_sockets.o ./mbed-os/features/mbedtls/src/nist_kw.o ./mbed-os/features/mbedtls/src/oid.o ./mbed-os/features/mbedtls/src/padlock.o ./mbed-os/features/mbedtls/src/pem.o ./mbed-os/features/mbedtls/src/pk.o ./mbed-os/features/mbedtls/src/pk_wrap.o ./mbed-os/features/mbedtls/src/pkcs11.o ./mbed-os/features/mbedtls/src/pkcs12.o ./mbed-os/features/mbedtls/src/pkcs5.o ./mbed-os/features/mbedtls/src/pkparse.o ./mbed-os/features/mbedtls/src/pkwrite.o ./mbed-os/features/mbedtls/src/platform.o ./mbed-os/features/mbedtls/src/platform_util.o ./mbed-os/features/mbedtls/src/poly1305.o ./mbed-os/features/mbedtls/src/ripemd160.o ./mbed-os/features/mbedtls/src/rsa.o ./mbed-os/features/mbedtls/src/rsa_internal.o ./mbed-os/features/mbedtls/src/sha1.o ./mbed-os/features/mbedtls/src/sha256.o ./mbed-os/features/mbedtls/src/sha512.o ./mbed-os/features/mbedtls/src/ssl_cache.o ./mbed-os/features/mbedtls/src/ssl_ciphersuites.o ./mbed-os/features/mbedtls/src/ssl_cli.o ./mbed-os/features/mbedtls/src/ssl_cookie.o ./mbed-os/features/mbedtls/src/ssl_srv.o ./mbed-os/features/mbedtls/src/ssl_ticket.o ./mbed-os/features/mbedtls/src/ssl_tls.o ./mbed-os/features/mbedtls/src/threading.o ./mbed-os/features/mbedtls/src/timing.o ./mbed-os/features/mbedtls/src/version.o ./mbed-os/features/mbedtls/src/version_features.o ./mbed-os/features/mbedtls/src/x509.o ./mbed-os/features/mbedtls/src/x509_create.o ./mbed-os/features/mbedtls/src/x509_crl.o ./mbed-os/features/mbedtls/src/x509_crt.o ./mbed-os/features/mbedtls/src/x509_csr.o ./mbed-os/features/mbedtls/src/x509write_crt.o ./mbed-os/features/mbedtls/src/x509write_csr.o ./mbed-os/features/mbedtls/src/xtea.o  ./mbed-os/features/mbedtls/platform/src/mbed_trng.o ./mbed-os/features/mbedtls/platform/src/platform_alt.o  ./mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/src/default_random_seed.o  ./mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_NSPE/src/psa_hrng.o  ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage_file.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage_its.o  ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_arc4.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_des.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_md4.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_md5.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_sha1.o  ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_auth.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ccp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap-md5.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap-new.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap_ms.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_demand.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_eap.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ecp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_eui64.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_fsm.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ipcp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ipv6cp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_lcp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_magic.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_mppe.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_multilink.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ppp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppapi.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppcrypt.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppoe.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppol2tp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppos.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_upap.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_utils.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_vj.o  ./mbed-os/features/lwipstack/lwip/src/netif/lwip_ethernet.o ./mbed-os/features/lwipstack/lwip/src/netif/lwip_ethernetif.o ./mbed-os/features/lwipstack/lwip/src/netif/lwip_lowpan6.o  ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_dhcp6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ethip6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_icmp6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_inet6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6_addr.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6_frag.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_mld6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_nd6.o  ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_autoip.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_dhcp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_etharp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_icmp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_igmp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4_addr.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4_frag.o  ./mbed-os/features/lwipstack/lwip/src/core/lwip_def.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_dns.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_inet_chksum.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_init.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_ip.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_mem.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_memp.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_netif.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_pbuf.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_raw.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_stats.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_sys.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp_in.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp_out.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_timeouts.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_udp.o  ./mbed-os/features/lwipstack/lwip/src/api/lwip_api_lib.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_api_msg.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_err.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netbuf.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netdb.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netifapi.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_sockets.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_tcpip.o  ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_checksum.o ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_memcpy.o ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_sys_arch.o  ./mbed-os/features/lwipstack/lwip-sys/lwip_random.o ./mbed-os/features/lwipstack/lwip-sys/lwip_tcp_isn.o  ./mbed-os/features/lwipstack/LWIPInterface.o ./mbed-os/features/lwipstack/LWIPInterfaceEMAC.o ./mbed-os/features/lwipstack/LWIPMemoryManager.o ./mbed-os/features/lwipstack/LWIPStack.o ./mbed-os/features/lwipstack/lwip_tools.o ./mbed-os/features/lwipstack/ppp_lwip.o  ./mbed-os/features/lorawan/system/LoRaWANTimer.o  ./mbed-os/features/lorawan/lorastack/phy/LoRaPHY.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYAS923.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYAU915.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYCN470.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYCN779.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYEU433.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYEU868.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYIN865.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYKR920.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYUS915.o  ./mbed-os/features/lorawan/lorastack/mac/LoRaMac.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacChannelPlan.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacCommand.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacCrypto.o  ./mbed-os/features/lorawan/LoRaWANInterface.o ./mbed-os/features/lorawan/LoRaWANStack.o  ./mbed-os/features/frameworks/utest/source/unity_handler.o ./mbed-os/features/frameworks/utest/source/utest_case.o ./mbed-os/features/frameworks/utest/source/utest_default_handlers.o ./mbed-os/features/frameworks/utest/source/utest_greentea_handlers.o ./mbed-os/features/frameworks/utest/source/utest_harness.o ./mbed-os/features/frameworks/utest/source/utest_shim.o ./mbed-os/features/frameworks/utest/source/utest_stack_trace.o ./mbed-os/features/frameworks/utest/source/utest_types.o  ./mbed-os/features/frameworks/utest/mbed-utest-shim.o  ./mbed-os/features/frameworks/unity/source/unity.o  ./mbed-os/features/frameworks/nanostack-libservice/source/nvmHelper/ns_nvm_helper.o  ./mbed-os/features/frameworks/nanostack-libservice/source/nsdynmemLIB/nsdynmemLIB.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libip6string/ip6tos.o ./mbed-os/features/frameworks/nanostack-libservice/source/libip6string/stoip6.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libip4string/ip4tos.o ./mbed-os/features/frameworks/nanostack-libservice/source/libip4string/stoip4.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libList/ns_list.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libBits/common_functions.o  ./mbed-os/features/frameworks/nanostack-libservice/source/IPv6_fcf_lib/ip_fsc.o  ./mbed-os/features/frameworks/mbed-trace/source/mbed_trace.o  ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_builder.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_header_check.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_parser.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_protocol.o  ./mbed-os/features/frameworks/mbed-client-randlib/source/randLIB.o  ./mbed-os/features/frameworks/mbed-client-cli/source/ns_cmdline.o  ./mbed-os/features/frameworks/greentea-client/source/greentea_metrics.o ./mbed-os/features/frameworks/greentea-client/source/greentea_serial.o ./mbed-os/features/frameworks/greentea-client/source/greentea_test_env.o  ./mbed-os/features/device_key/source/DeviceKey.o  ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularContext.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularPower.o  ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularContext.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularPower.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularStack.o  ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularContext.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularPower.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularPower.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularStack.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularStack.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularStack.o  ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularContext.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularPower.o  ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularContext.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularStack.o  ./mbed-os/features/cellular/framework/device/CellularContext.o ./mbed-os/features/cellular/framework/device/CellularDevice.o ./mbed-os/features/cellular/framework/device/CellularStateMachine.o  ./mbed-os/features/cellular/framework/common/CellularLog.o ./mbed-os/features/cellular/framework/common/CellularUtil.o  ./mbed-os/features/cellular/framework/AT/ATHandler.o ./mbed-os/features/cellular/framework/AT/AT_CellularBase.o ./mbed-os/features/cellular/framework/AT/AT_CellularContext.o ./mbed-os/features/cellular/framework/AT/AT_CellularDevice.o ./mbed-os/features/cellular/framework/AT/AT_CellularInformation.o ./mbed-os/features/cellular/framework/AT/AT_CellularNetwork.o ./mbed-os/features/cellular/framework/AT/AT_CellularPower.o ./mbed-os/features/cellular/framework/AT/AT_CellularSIM.o ./mbed-os/features/cellular/framework/AT/AT_CellularSMS.o ./mbed-os/features/cellular/framework/AT/AT_CellularStack.o  ./mbed-os/events/equeue/equeue.o ./mbed-os/events/equeue/equeue_mbed.o ./mbed-os/events/equeue/equeue_posix.o  ./mbed-os/events/EventQueue.o ./mbed-os/events/mbed_shared_queues.o  ./mbed-os/drivers/AnalogIn.o ./mbed-os/drivers/BusIn.o ./mbed-os/drivers/BusInOut.o ./mbed-os/drivers/BusOut.o ./mbed-os/drivers/CAN.o ./mbed-os/drivers/Ethernet.o ./mbed-os/drivers/FlashIAP.o ./mbed-os/drivers/I2C.o ./mbed-os/drivers/I2CSlave.o ./mbed-os/drivers/InterruptIn.o ./mbed-os/drivers/InterruptManager.o ./mbed-os/drivers/MbedCRC.o ./mbed-os/drivers/QSPI.o ./mbed-os/drivers/RawSerial.o ./mbed-os/drivers/SPI.o ./mbed-os/drivers/SPISlave.o ./mbed-os/drivers/Serial.o ./mbed-os/drivers/SerialBase.o ./mbed-os/drivers/TableCRC.o ./mbed-os/drivers/Ticker.o ./mbed-os/drivers/Timeout.o ./mbed-os/drivers/Timer.o ./mbed-os/drivers/TimerEvent.o ./mbed-os/drivers/UARTSerial.o  ./mbed-os/components/wifi/esp8266-driver/ESP8266/ESP8266.o  ./mbed-os/components/wifi/esp8266-driver/ESP8266Interface.o  ./mbed-os/components/storage/blockdevice/COMPONENT_SD/SDBlockDevice.o  ./mbed-os/components/storage/blockdevice/COMPONENT_FLASHIAP/FlashIAPBlockDevice.o  ./mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_IMPL/pits_impl.o  ./mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_EMUL/psa_prot_internal_storage.o  ./mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source/NanostackRfPhys2lp.o ./mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source/rf_configuration.o  ./mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source/MCR20Drv.o ./mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source/NanostackRfPhyMcr20a.o  ./mbed-os/components/802.15.4_RF/atmel-rf-driver/source/NanostackRfPhyAtmel.o ./mbed-os/components/802.15.4_RF/atmel-rf-driver/source/at24mac.o  ./mbed-os/cmsis/TARGET_CORTEX_M/TOOLCHAIN_GCC/except.o  ./mbed-os/cmsis/TARGET_CORTEX_M/mbed_fault_handler.o ./mbed-os/cmsis/TARGET_CORTEX_M/mbed_tz_context.o  ./main.o   -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys
process_begin: CreateProcess(NULL, C:/Users/noname/AppData/Roaming/GNU MCU Eclipse/Build Tools/2.11-20180428-1604/bin/sh.exe -c "arm-none-eabi-g++ -mcpu=cortex-m4 -mthumb -mfloat-abi=softfp -mfpu=fpv4-sp-d16 -O0 -fmessage-length=0 -ffunction-sections -fdata-sections -fno-builtin -funsigned-char -fno-delete-null-pointer-checks -fomit-frame-pointer -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers  -g3 -T \"F:/k66/Debug/linker-script-debug.ld\" -Xlinker --gc-sections -Xlinker --wrap=main -Xlinker --wrap=_malloc_r -Xlinker --wrap=_free_r -Xlinker --wrap=_realloc_r -Xlinker --wrap=_memalign_r -Xlinker --wrap=_calloc_r -Xlinker --wrap=exit -Xlinker --wrap=atexit -Wl,-Map,\"k66.map\" -DMBED_DEBUG -DMBED_TRAP_ERRORS_ENABLED=1 -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -Wl,-n -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -DMBED_BOOT_STACK_SIZE=1024 -Wl,--start-group -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys -Wl,--end-group -o \"k66.elf\"  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/dma_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/flash_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/qspi_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_adc16.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_clock.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_cmp.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_cmt.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_crc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dac.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dmamux.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dspi.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dspi_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_enet.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_ewm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flash.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flexbus.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flexcan.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_ftm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_gpio.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_i2c.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_i2c_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_llwu.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lmem_cache.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lptmr.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lpuart.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lpuart_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pdb.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pit.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pmc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rcm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rnga.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rtc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sai.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sai_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sdhc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sdramc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sim.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_smc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sysmpu.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_tpm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_tsi_v4.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_uart.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_uart_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_vref.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_wdog.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/TOOLCHAIN_GCC_ARM/startup_MK66F18.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/system_MK66F18.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralPins.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/crc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/fsl_clock_config.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/fsl_phy.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/mbed_overrides.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/trng_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/fsl_common.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/Source/os_systick.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/Source/os_tick_ptim.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/TOOLCHAIN_GCC/TARGET_RTOS_M4_M7/irq_cm4f.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_delay.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_evflags.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_evr.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_kernel.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_lib.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_memory.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_mempool.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_msgqueue.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_mutex.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_semaphore.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_system.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_thread.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_timer.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Config/RTX_Config.o  ./mbed-os/rtos/TARGET_CORTEX/rtx4/cmsis_os1.o  ./mbed-os/rtos/TARGET_CORTEX/TOOLCHAIN_GCC_ARM/mbed_boot_gcc_arm.o  ./mbed-os/rtos/TARGET_CORTEX/SysTimer.o ./mbed-os/rtos/TARGET_CORTEX/mbed_boot.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtos_rtx.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtx_handlers.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtx_idle.o  ./mbed-os/rtos/ConditionVariable.o ./mbed-os/rtos/EventFlags.o ./mbed-os/rtos/Kernel.o ./mbed-os/rtos/Mutex.o ./mbed-os/rtos/RtosTimer.o ./mbed-os/rtos/Semaphore.o ./mbed-os/rtos/ThisThread.o ./mbed-os/rtos/Thread.o  ./mbed-os/platform/ATCmdParser.o ./mbed-os/platform/CThunkBase.o ./mbed-os/platform/CallChain.o ./mbed-os/platform/FileBase.o ./mbed-os/platform/FileHandle.o ./mbed-os/platform/FilePath.o ./mbed-os/platform/FileSystemHandle.o ./mbed-os/platform/LocalFileSystem.o ./mbed-os/platform/Stream.o ./mbed-os/platform/mbed_alloc_wrappers.o ./mbed-os/platform/mbed_application.o ./mbed-os/platform/mbed_assert.o ./mbed-os/platform/mbed_board.o ./mbed-os/platform/mbed_critical.o ./mbed-os/platform/mbed_error.o ./mbed-os/platform/mbed_error_hist.o ./mbed-os/platform/mbed_interface.o ./mbed-os/platform/mbed_mem_trace.o ./mbed-os/platform/mbed_mktime.o ./mbed-os/platform/mbed_mpu_mgmt.o ./mbed-os/platform/mbed_poll.o ./mbed-os/platform/mbed_retarget.o ./mbed-os/platform/mbed_rtc_time.o ./mbed-os/platform/mbed_sdk_boot.o ./mbed-os/platform/mbed_semihost_api.o ./mbed-os/platform/mbed_sleep_manager.o ./mbed-os/platform/mbed_stats.o ./mbed-os/platform/mbed_wait_api_no_rtos.o ./mbed-os/platform/mbed_wait_api_rtos.o  ./mbed-os/hal/mpu/mbed_mpu_v7m.o ./mbed-os/hal/mpu/mbed_mpu_v8m.o  ./mbed-os/hal/LowPowerTickerWrapper.o ./mbed-os/hal/mbed_critical_section_api.o ./mbed-os/hal/mbed_flash_api.o ./mbed-os/hal/mbed_gpio.o ./mbed-os/hal/mbed_itm_api.o ./mbed-os/hal/mbed_lp_ticker_api.o ./mbed-os/hal/mbed_lp_ticker_wrapper.o ./mbed-os/hal/mbed_pinmap_common.o ./mbed-os/hal/mbed_ticker_api.o ./mbed-os/hal/mbed_us_ticker_api.o  ./mbed-os/features/storage/system_storage/SystemStorage.o  ./mbed-os/features/storage/nvstore/source/nvstore.o  ./mbed-os/features/storage/kvstore/tdbstore/TDBStore.o  ./mbed-os/features/storage/kvstore/securestore/SecureStore.o  ./mbed-os/features/storage/kvstore/kv_map/KVMap.o  ./mbed-os/features/storage/kvstore/global_api/kvstore_global_api.o  ./mbed-os/features/storage/kvstore/filesystemstore/FileSystemStore.o  ./mbed-os/features/storage/kvstore/direct_access_devicekey/DirectAccessDevicekey.o  ./mbed-os/features/storage/kvstore/conf/kv_config.o  ./mbed-os/features/storage/filesystem/littlefs/littlefs/lfs.o ./mbed-os/features/storage/filesystem/littlefs/littlefs/lfs_util.o  ./mbed-os/features/storage/filesystem/littlefs/LittleFileSystem.o  ./mbed-os/features/storage/filesystem/fat/ChaN/ff.o ./mbed-os/features/storage/filesystem/fat/ChaN/ffunicode.o  ./mbed-os/features/storage/filesystem/fat/FATFileSystem.o  ./mbed-os/features/storage/filesystem/Dir.o ./mbed-os/features/storage/filesystem/File.o ./mbed-os/features/storage/filesystem/FileSystem.o  ./mbed-os/features/storage/blockdevice/BufferedBlockDevice.o ./mbed-os/features/storage/blockdevice/ChainingBlockDevice.o ./mbed-os/features/storage/blockdevice/ExhaustibleBlockDevice.o ./mbed-os/features/storage/blockdevice/FlashSimBlockDevice.o ./mbed-os/features/storage/blockdevice/HeapBlockDevice.o ./mbed-os/features/storage/blockdevice/MBRBlockDevice.o ./mbed-os/features/storage/blockdevice/ObservingBlockDevice.o ./mbed-os/features/storage/blockdevice/ProfilingBlockDevice.o ./mbed-os/features/storage/blockdevice/ReadOnlyBlockDevice.o ./mbed-os/features/storage/blockdevice/SlicingBlockDevice.o  ./mbed-os/features/nfc/stack/transceiver/pn512/pn512.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_cmd.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_hw.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_irq.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_poll.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_registers.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_rf.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_timer.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_transceive.o  ./mbed-os/features/nfc/stack/transceiver/transceiver.o  ./mbed-os/features/nfc/stack/tech/type4/type4_target.o  ./mbed-os/features/nfc/stack/tech/isodep/isodep_target.o  ./mbed-os/features/nfc/stack/tech/iso7816/iso7816.o ./mbed-os/features/nfc/stack/tech/iso7816/iso7816_app.o  ./mbed-os/features/nfc/stack/platform/nfc_scheduler.o ./mbed-os/features/nfc/stack/platform/nfc_transport.o  ./mbed-os/features/nfc/stack/ndef/ndef.o  ./mbed-os/features/nfc/source/nfc/ndef/common/Mime.o ./mbed-os/features/nfc/source/nfc/ndef/common/SimpleMessageParser.o ./mbed-os/features/nfc/source/nfc/ndef/common/Text.o ./mbed-os/features/nfc/source/nfc/ndef/common/URI.o ./mbed-os/features/nfc/source/nfc/ndef/common/util.o  ./mbed-os/features/nfc/source/nfc/ndef/MessageBuilder.o ./mbed-os/features/nfc/source/nfc/ndef/MessageParser.o ./mbed-os/features/nfc/source/nfc/ndef/RecordParser.o  ./mbed-os/features/nfc/source/nfc/NFCController.o ./mbed-os/features/nfc/source/nfc/NFCControllerDriver.o ./mbed-os/features/nfc/source/nfc/NFCEEPROM.o ./mbed-os/features/nfc/source/nfc/NFCEEPROMDriver.o ./mbed-os/features/nfc/source/nfc/NFCNDEFCapable.o ./mbed-os/features/nfc/source/nfc/NFCRemoteEndpoint.o ./mbed-os/features/nfc/source/nfc/NFCRemoteInitiator.o ./mbed-os/features/nfc/source/nfc/NFCTarget.o ./mbed-os/features/nfc/source/nfc/Type4RemoteInitiator.o  ./mbed-os/features/nfc/source/controllers/PN512Driver.o ./mbed-os/features/nfc/source/controllers/PN512SPITransportDriver.o ./mbed-os/features/nfc/source/controllers/PN512TransportDriver.o  ./mbed-os/features/nfc/acore/source/ac_buffer.o ./mbed-os/features/nfc/acore/source/ac_buffer_builder.o ./mbed-os/features/nfc/acore/source/ac_buffer_reader.o ./mbed-os/features/nfc/acore/source/ac_stream.o  ./mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC/TARGET_K66F/hardware_init_MK66F18.o  ./mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC/kinetis_emac.o  ./mbed-os/features/netsocket/cellular/generic_modem_driver/OnboardCellularInterface.o ./mbed-os/features/netsocket/cellular/generic_modem_driver/PPPCellularInterface.o ./mbed-os/features/netsocket/cellular/generic_modem_driver/UARTCellularInterface.o  ./mbed-os/features/netsocket/DTLSSocket.o ./mbed-os/features/netsocket/DTLSSocketWrapper.o ./mbed-os/features/netsocket/EMACInterface.o ./mbed-os/features/netsocket/EMACMemoryManager.o ./mbed-os/features/netsocket/EthernetInterface.o ./mbed-os/features/netsocket/InternetSocket.o ./mbed-os/features/netsocket/NetworkInterface.o ./mbed-os/features/netsocket/NetworkInterfaceDefaults.o ./mbed-os/features/netsocket/NetworkStack.o ./mbed-os/features/netsocket/SocketAddress.o ./mbed-os/features/netsocket/SocketStats.o ./mbed-os/features/netsocket/TCPServer.o ./mbed-os/features/netsocket/TCPSocket.o ./mbed-os/features/netsocket/TLSSocket.o ./mbed-os/features/netsocket/TLSSocketWrapper.o ./mbed-os/features/netsocket/UDPSocket.o ./mbed-os/features/netsocket/WiFiAccessPoint.o ./mbed-os/features/netsocket/nsapi_dns.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/multicast_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_6lowpan_parameter_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_ipv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_load_balance.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_mle.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_rpl.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_short_address_extension.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_test.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/ns_net.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/socket_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/dhcp_service_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/libDHCPv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/libDHCPv6_server.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack/ipv6_routing_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack/protocol_ipv6.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/whiteboard/whiteboard.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/isqrt.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/ns_crc.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/ns_file_system.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/pan_blacklist/pan_blacklist.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/nd_proxy/nd_proxy.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_buffer.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_frame_counter_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_interface.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_security.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_fnet_events.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_fnet_port.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_mdns_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mac_neighbor_table/mac_neighbor_table.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/load_balance/load_balance.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fnv_hash/fnv_hash.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/channel_list.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_channel.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_common.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_configuration_interface.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_statistics.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_ws_empty_functions.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/etx/etx.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/blacklist/blacklist.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Trickle/trickle.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/SHA256_Lib/ns_sha256.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/SHA256_Lib/shalib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Neighbor_cache/neighbor_cache.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/mbedOS/aes_mbedtls_adapter.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/ccm_security.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS/tls_ccm_crypt.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS/tls_lib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/eap_protocol.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_avp.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_eap_header.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_header.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_relay_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_server.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/Common/security_lib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_control.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_data.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_downward.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_mrhof.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_objective.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_of0.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_policy.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_upward.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_core.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_core_sleep.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_stats.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_timer.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MPL/mpl.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MLE/mle.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MLE/mle_tlv.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf/virtual_rf_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf/virtual_rf_driver.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/serial/serial_mac_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/ethernet/ethernet_mac_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_fhss_callbacks.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_filter.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_header_helper_functions.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_indirect_data.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_mcps_sap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_mlme.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_pd_sap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_security_mib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/sw_mac.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/rf_driver_storage.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_client/dhcpv6_client_service.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_Server/DHCPv6_Server_service.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/address.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/buffer_dyn.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/ns_socket.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/sockbuf.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6_prefix.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6_radv.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_flow.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_fragmentation.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_resolution.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/mld.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/tcp.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/udp.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/BorderRouter/border_router.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ws/ws_empty_functions.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_bbr_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_beacon.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_border_router_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_commissioning_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_commissioning_if.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_common.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_dhcpv6_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_diagnostic.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_discovery.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_host_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_joiner_application.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_leader_service.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_lowpower_private_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_if.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_mdns.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_meshcop_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_mle_message_handler.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_nd.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_neighbor_class.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_net_config_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_data_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_data_storage.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_synch.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_nvm_store.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_resolution_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_resolution_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_router_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_routing.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_test_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/NVM/nwk_nvm.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ND/nd_router_object.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Mesh/mesh.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/beacon_handler.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_data_poll.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_helper.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_ie_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_pairwise_key.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_response_handler.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/6lowpan_iphc.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/iphc_compress.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/iphc_decompress.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/lowpan_context.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Fragmentation/cipv6_fragmenter.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/network_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan_interface.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/adaptation_interface.o  ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/event.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/minar_hal_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/ns_timeout.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/ns_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/system_timer.o  ./mbed-os/features/nanostack/nanostack-interface/Nanostack.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/nvm/nvm_ram.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/cs_nvm/cs_nvm.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_fhss_timer.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_interrupt.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_random.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_timer.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop_mbed.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop_mutex.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_hal_init.o  ./mbed-os/features/nanostack/mbed-mesh-api/source/CallbackHandler.o ./mbed-os/features/nanostack/mbed-mesh-api/source/LoWPANNDInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/MeshInterfaceNanostack.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEMACInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEthernetInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackMemoryManager.o ./mbed-os/features/nanostack/mbed-mesh-api/source/ThreadInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/WisunInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/ethernet_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/mesh_system.o ./mbed-os/features/nanostack/mbed-mesh-api/source/nd_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/thread_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/wisun_tasklet.o  ./mbed-os/features/nanostack/coap-service/source/coap_connection_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_message_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_security_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_service_api.o  ./mbed-os/features/mbedtls/targets/hash_wrappers.o  ./mbed-os/features/mbedtls/src/aes.o ./mbed-os/features/mbedtls/src/aesni.o ./mbed-os/features/mbedtls/src/arc4.o ./mbed-os/features/mbedtls/src/aria.o ./mbed-os/features/mbedtls/src/asn1parse.o ./mbed-os/features/mbedtls/src/asn1write.o ./mbed-os/features/mbedtls/src/base64.o ./mbed-os/features/mbedtls/src/bignum.o ./mbed-os/features/mbedtls/src/blowfish.o ./mbed-os/features/mbedtls/src/camellia.o ./mbed-os/features/mbedtls/src/ccm.o ./mbed-os/features/mbedtls/src/certs.o ./mbed-os/features/mbedtls/src/chacha20.o ./mbed-os/features/mbedtls/src/chachapoly.o ./mbed-os/features/mbedtls/src/cipher.o ./mbed-os/features/mbedtls/src/cipher_wrap.o ./mbed-os/features/mbedtls/src/cmac.o ./mbed-os/features/mbedtls/src/ctr_drbg.o ./mbed-os/features/mbedtls/src/debug.o ./mbed-os/features/mbedtls/src/des.o ./mbed-os/features/mbedtls/src/dhm.o ./mbed-os/features/mbedtls/src/ecdh.o ./mbed-os/features/mbedtls/src/ecdsa.o ./mbed-os/features/mbedtls/src/ecjpake.o ./mbed-os/features/mbedtls/src/ecp.o ./mbed-os/features/mbedtls/src/ecp_curves.o ./mbed-os/features/mbedtls/src/entropy.o ./mbed-os/features/mbedtls/src/entropy_poll.o ./mbed-os/features/mbedtls/src/error.o ./mbed-os/features/mbedtls/src/gcm.o ./mbed-os/features/mbedtls/src/havege.o ./mbed-os/features/mbedtls/src/hkdf.o ./mbed-os/features/mbedtls/src/hmac_drbg.o ./mbed-os/features/mbedtls/src/md.o ./mbed-os/features/mbedtls/src/md2.o ./mbed-os/features/mbedtls/src/md4.o ./mbed-os/features/mbedtls/src/md5.o ./mbed-os/features/mbedtls/src/md_wrap.o ./mbed-os/features/mbedtls/src/memory_buffer_alloc.o ./mbed-os/features/mbedtls/src/net_sockets.o ./mbed-os/features/mbedtls/src/nist_kw.o ./mbed-os/features/mbedtls/src/oid.o ./mbed-os/features/mbedtls/src/padlock.o ./mbed-os/features/mbedtls/src/pem.o ./mbed-os/features/mbedtls/src/pk.o ./mbed-os/features/mbedtls/src/pk_wrap.o ./mbed-os/features/mbedtls/src/pkcs11.o ./mbed-os/features/mbedtls/src/pkcs12.o ./mbed-os/features/mbedtls/src/pkcs5.o ./mbed-os/features/mbedtls/src/pkparse.o ./mbed-os/features/mbedtls/src/pkwrite.o ./mbed-os/features/mbedtls/src/platform.o ./mbed-os/features/mbedtls/src/platform_util.o ./mbed-os/features/mbedtls/src/poly1305.o ./mbed-os/features/mbedtls/src/ripemd160.o ./mbed-os/features/mbedtls/src/rsa.o ./mbed-os/features/mbedtls/src/rsa_internal.o ./mbed-os/features/mbedtls/src/sha1.o ./mbed-os/features/mbedtls/src/sha256.o ./mbed-os/features/mbedtls/src/sha512.o ./mbed-os/features/mbedtls/src/ssl_cache.o ./mbed-os/features/mbedtls/src/ssl_ciphersuites.o ./mbed-os/features/mbedtls/src/ssl_cli.o ./mbed-os/features/mbedtls/src/ssl_cookie.o ./mbed-os/features/mbedtls/src/ssl_srv.o ./mbed-os/features/mbedtls/src/ssl_ticket.o ./mbed-os/features/mbedtls/src/ssl_tls.o ./mbed-os/features/mbedtls/src/threading.o ./mbed-os/features/mbedtls/src/timing.o ./mbed-os/features/mbedtls/src/version.o ./mbed-os/features/mbedtls/src/version_features.o ./mbed-os/features/mbedtls/src/x509.o ./mbed-os/features/mbedtls/src/x509_create.o ./mbed-os/features/mbedtls/src/x509_crl.o ./mbed-os/features/mbedtls/src/x509_crt.o ./mbed-os/features/mbedtls/src/x509_csr.o ./mbed-os/features/mbedtls/src/x509write_crt.o ./mbed-os/features/mbedtls/src/x509write_csr.o ./mbed-os/features/mbedtls/src/xtea.o  ./mbed-os/features/mbedtls/platform/src/mbed_trng.o ./mbed-os/features/mbedtls/platform/src/platform_alt.o  ./mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/src/default_random_seed.o  ./mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_NSPE/src/psa_hrng.o  ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage_file.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage_its.o  ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_arc4.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_des.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_md4.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_md5.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_sha1.o  ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_auth.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ccp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap-md5.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap-new.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap_ms.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_demand.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_eap.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ecp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_eui64.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_fsm.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ipcp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ipv6cp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_lcp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_magic.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_mppe.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_multilink.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ppp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppapi.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppcrypt.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppoe.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppol2tp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppos.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_upap.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_utils.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_vj.o  ./mbed-os/features/lwipstack/lwip/src/netif/lwip_ethernet.o ./mbed-os/features/lwipstack/lwip/src/netif/lwip_ethernetif.o ./mbed-os/features/lwipstack/lwip/src/netif/lwip_lowpan6.o  ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_dhcp6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ethip6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_icmp6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_inet6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6_addr.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6_frag.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_mld6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_nd6.o  ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_autoip.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_dhcp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_etharp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_icmp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_igmp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4_addr.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4_frag.o  ./mbed-os/features/lwipstack/lwip/src/core/lwip_def.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_dns.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_inet_chksum.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_init.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_ip.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_mem.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_memp.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_netif.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_pbuf.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_raw.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_stats.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_sys.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp_in.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp_out.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_timeouts.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_udp.o  ./mbed-os/features/lwipstack/lwip/src/api/lwip_api_lib.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_api_msg.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_err.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netbuf.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netdb.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netifapi.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_sockets.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_tcpip.o  ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_checksum.o ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_memcpy.o ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_sys_arch.o  ./mbed-os/features/lwipstack/lwip-sys/lwip_random.o ./mbed-os/features/lwipstack/lwip-sys/lwip_tcp_isn.o  ./mbed-os/features/lwipstack/LWIPInterface.o ./mbed-os/features/lwipstack/LWIPInterfaceEMAC.o ./mbed-os/features/lwipstack/LWIPMemoryManager.o ./mbed-os/features/lwipstack/LWIPStack.o ./mbed-os/features/lwipstack/lwip_tools.o ./mbed-os/features/lwipstack/ppp_lwip.o  ./mbed-os/features/lorawan/system/LoRaWANTimer.o  ./mbed-os/features/lorawan/lorastack/phy/LoRaPHY.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYAS923.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYAU915.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYCN470.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYCN779.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYEU433.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYEU868.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYIN865.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYKR920.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYUS915.o  ./mbed-os/features/lorawan/lorastack/mac/LoRaMac.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacChannelPlan.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacCommand.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacCrypto.o  ./mbed-os/features/lorawan/LoRaWANInterface.o ./mbed-os/features/lorawan/LoRaWANStack.o  ./mbed-os/features/frameworks/utest/source/unity_handler.o ./mbed-os/features/frameworks/utest/source/utest_case.o ./mbed-os/features/frameworks/utest/source/utest_default_handlers.o ./mbed-os/features/frameworks/utest/source/utest_greentea_handlers.o ./mbed-os/features/frameworks/utest/source/utest_harness.o ./mbed-os/features/frameworks/utest/source/utest_shim.o ./mbed-os/features/frameworks/utest/source/utest_stack_trace.o ./mbed-os/features/frameworks/utest/source/utest_types.o  ./mbed-os/features/frameworks/utest/mbed-utest-shim.o  ./mbed-os/features/frameworks/unity/source/unity.o  ./mbed-os/features/frameworks/nanostack-libservice/source/nvmHelper/ns_nvm_helper.o  ./mbed-os/features/frameworks/nanostack-libservice/source/nsdynmemLIB/nsdynmemLIB.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libip6string/ip6tos.o ./mbed-os/features/frameworks/nanostack-libservice/source/libip6string/stoip6.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libip4string/ip4tos.o ./mbed-os/features/frameworks/nanostack-libservice/source/libip4string/stoip4.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libList/ns_list.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libBits/common_functions.o  ./mbed-os/features/frameworks/nanostack-libservice/source/IPv6_fcf_lib/ip_fsc.o  ./mbed-os/features/frameworks/mbed-trace/source/mbed_trace.o  ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_builder.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_header_check.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_parser.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_protocol.o  ./mbed-os/features/frameworks/mbed-client-randlib/source/randLIB.o  ./mbed-os/features/frameworks/mbed-client-cli/source/ns_cmdline.o  ./mbed-os/features/frameworks/greentea-client/source/greentea_metrics.o ./mbed-os/features/frameworks/greentea-client/source/greentea_serial.o ./mbed-os/features/frameworks/greentea-client/source/greentea_test_env.o  ./mbed-os/features/device_key/source/DeviceKey.o  ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularContext.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularPower.o  ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularContext.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularPower.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularStack.o  ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularContext.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularPower.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularPower.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularStack.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularStack.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularStack.o  ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularContext.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularPower.o  ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularContext.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularStack.o  ./mbed-os/features/cellular/framework/device/CellularContext.o ./mbed-os/features/cellular/framework/device/CellularDevice.o ./mbed-os/features/cellular/framework/device/CellularStateMachine.o  ./mbed-os/features/cellular/framework/common/CellularLog.o ./mbed-os/features/cellular/framework/common/CellularUtil.o  ./mbed-os/features/cellular/framework/AT/ATHandler.o ./mbed-os/features/cellular/framework/AT/AT_CellularBase.o ./mbed-os/features/cellular/framework/AT/AT_CellularContext.o ./mbed-os/features/cellular/framework/AT/AT_CellularDevice.o ./mbed-os/features/cellular/framework/AT/AT_CellularInformation.o ./mbed-os/features/cellular/framework/AT/AT_CellularNetwork.o ./mbed-os/features/cellular/framework/AT/AT_CellularPower.o ./mbed-os/features/cellular/framework/AT/AT_CellularSIM.o ./mbed-os/features/cellular/framework/AT/AT_CellularSMS.o ./mbed-os/features/cellular/framework/AT/AT_CellularStack.o  ./mbed-os/events/equeue/equeue.o ./mbed-os/events/equeue/equeue_mbed.o ./mbed-os/events/equeue/equeue_posix.o  ./mbed-os/events/EventQueue.o ./mbed-os/events/mbed_shared_queues.o  ./mbed-os/drivers/AnalogIn.o ./mbed-os/drivers/BusIn.o ./mbed-os/drivers/BusInOut.o ./mbed-os/drivers/BusOut.o ./mbed-os/drivers/CAN.o ./mbed-os/drivers/Ethernet.o ./mbed-os/drivers/FlashIAP.o ./mbed-os/drivers/I2C.o ./mbed-os/drivers/I2CSlave.o ./mbed-os/drivers/InterruptIn.o ./mbed-os/drivers/InterruptManager.o ./mbed-os/drivers/MbedCRC.o ./mbed-os/drivers/QSPI.o ./mbed-os/drivers/RawSerial.o ./mbed-os/drivers/SPI.o ./mbed-os/drivers/SPISlave.o ./mbed-os/drivers/Serial.o ./mbed-os/drivers/SerialBase.o ./mbed-os/drivers/TableCRC.o ./mbed-os/drivers/Ticker.o ./mbed-os/drivers/Timeout.o ./mbed-os/drivers/Timer.o ./mbed-os/drivers/TimerEvent.o ./mbed-os/drivers/UARTSerial.o  ./mbed-os/components/wifi/esp8266-driver/ESP8266/ESP8266.o  ./mbed-os/components/wifi/esp8266-driver/ESP8266Interface.o  ./mbed-os/components/storage/blockdevice/COMPONENT_SD/SDBlockDevice.o  ./mbed-os/components/storage/blockdevice/COMPONENT_FLASHIAP/FlashIAPBlockDevice.o  ./mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_IMPL/pits_impl.o  ./mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_EMUL/psa_prot_internal_storage.o  ./mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source/NanostackRfPhys2lp.o ./mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source/rf_configuration.o  ./mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source/MCR20Drv.o ./mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source/NanostackRfPhyMcr20a.o  ./mbed-os/components/802.15.4_RF/atmel-rf-driver/source/NanostackRfPhyAtmel.o ./mbed-os/components/802.15.4_RF/atmel-rf-driver/source/at24mac.o  ./mbed-os/cmsis/TARGET_CORTEX_M/TOOLCHAIN_GCC/except.o  ./mbed-os/cmsis/TARGET_CORTEX_M/mbed_fault_handler.o ./mbed-os/cmsis/TARGET_CORTEX_M/mbed_tz_context.o  ./main.o   -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys", ...) failed.
make (e=87): The parameter is incorrect.

make: *** [makefile:226: k66.elf] Error 87
"make -j4 all" terminated with exit code 2. Build might be incomplete.

@theotherjimmy
Copy link
Contributor

@JarekParal This should be available in the online compiler as it's at 5.11.4 right now (last I checked).

@JarekParal
Copy link
Contributor

@theotherjimmy Then it still not completely solve the problem with GNU ARM Eclipse IDE export because I already tested the online compiler export with FRDM-K64F and FRDM-K66F and the compilation in Eclipse IDE everytime fail on this message:

Building target: k66x.elf
Invoking: Cross ARM C++ Linker
arm-none-eabi-g++ -mcpu=cortex-m4 -mthumb -mfloat-abi=softfp -mfpu=fpv4-sp-d16 -O0 -fmessage-length=0 -ffunction-sections -fdata-sections -fno-builtin -funsigned-char -fno-delete-null-pointer-checks -fomit-frame-pointer -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers  -g3 -T "F:/k66x/Debug/linker-script-debug.ld" -Xlinker --gc-sections -Xlinker --wrap=main -Xlinker --wrap=_malloc_r -Xlinker --wrap=_free_r -Xlinker --wrap=_realloc_r -Xlinker --wrap=_memalign_r -Xlinker --wrap=_calloc_r -Xlinker --wrap=exit -Xlinker --wrap=atexit -Wl,-Map,"k66x.map" -DMBED_DEBUG -DMBED_TRAP_ERRORS_ENABLED=1 -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -Wl,-n -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -DMBED_BOOT_STACK_SIZE=1024 -Wl,--start-group -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys -Wl,--end-group -o "k66x.elf"  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/dma_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/flash_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/qspi_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_adc16.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_clock.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_cmp.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_cmt.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_crc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dac.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dmamux.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dspi.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dspi_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_enet.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_ewm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flash.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flexbus.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flexcan.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_ftm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_gpio.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_i2c.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_i2c_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_llwu.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lmem_cache.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lptmr.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lpuart.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lpuart_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pdb.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pit.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pmc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rcm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rnga.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rtc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sai.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sai_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sdhc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sdramc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sim.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_smc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sysmpu.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_tpm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_tsi_v4.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_uart.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_uart_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_vref.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_wdog.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/TOOLCHAIN_GCC_ARM/startup_MK66F18.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/system_MK66F18.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralPins.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/crc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/fsl_clock_config.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/fsl_phy.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/mbed_overrides.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/trng_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/fsl_common.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/Source/os_systick.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/Source/os_tick_ptim.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/TOOLCHAIN_GCC/TARGET_RTOS_M4_M7/irq_cm4f.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_delay.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_evflags.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_evr.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_kernel.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_lib.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_memory.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_mempool.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_msgqueue.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_mutex.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_semaphore.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_system.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_thread.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_timer.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Config/RTX_Config.o  ./mbed-os/rtos/TARGET_CORTEX/rtx4/cmsis_os1.o  ./mbed-os/rtos/TARGET_CORTEX/TOOLCHAIN_GCC_ARM/mbed_boot_gcc_arm.o  ./mbed-os/rtos/TARGET_CORTEX/SysTimer.o ./mbed-os/rtos/TARGET_CORTEX/mbed_boot.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtos_rtx.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtx_handlers.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtx_idle.o  ./mbed-os/rtos/ConditionVariable.o ./mbed-os/rtos/EventFlags.o ./mbed-os/rtos/Kernel.o ./mbed-os/rtos/Mutex.o ./mbed-os/rtos/RtosTimer.o ./mbed-os/rtos/Semaphore.o ./mbed-os/rtos/ThisThread.o ./mbed-os/rtos/Thread.o  ./mbed-os/platform/ATCmdParser.o ./mbed-os/platform/CThunkBase.o ./mbed-os/platform/CallChain.o ./mbed-os/platform/FileBase.o ./mbed-os/platform/FileHandle.o ./mbed-os/platform/FilePath.o ./mbed-os/platform/FileSystemHandle.o ./mbed-os/platform/LocalFileSystem.o ./mbed-os/platform/Stream.o ./mbed-os/platform/mbed_alloc_wrappers.o ./mbed-os/platform/mbed_application.o ./mbed-os/platform/mbed_assert.o ./mbed-os/platform/mbed_board.o ./mbed-os/platform/mbed_critical.o ./mbed-os/platform/mbed_error.o ./mbed-os/platform/mbed_error_hist.o ./mbed-os/platform/mbed_interface.o ./mbed-os/platform/mbed_mem_trace.o ./mbed-os/platform/mbed_mktime.o ./mbed-os/platform/mbed_mpu_mgmt.o ./mbed-os/platform/mbed_poll.o ./mbed-os/platform/mbed_retarget.o ./mbed-os/platform/mbed_rtc_time.o ./mbed-os/platform/mbed_sdk_boot.o ./mbed-os/platform/mbed_semihost_api.o ./mbed-os/platform/mbed_sleep_manager.o ./mbed-os/platform/mbed_stats.o ./mbed-os/platform/mbed_wait_api_no_rtos.o ./mbed-os/platform/mbed_wait_api_rtos.o  ./mbed-os/hal/mpu/mbed_mpu_v7m.o ./mbed-os/hal/mpu/mbed_mpu_v8m.o  ./mbed-os/hal/LowPowerTickerWrapper.o ./mbed-os/hal/mbed_critical_section_api.o ./mbed-os/hal/mbed_flash_api.o ./mbed-os/hal/mbed_gpio.o ./mbed-os/hal/mbed_itm_api.o ./mbed-os/hal/mbed_lp_ticker_api.o ./mbed-os/hal/mbed_lp_ticker_wrapper.o ./mbed-os/hal/mbed_pinmap_common.o ./mbed-os/hal/mbed_ticker_api.o ./mbed-os/hal/mbed_us_ticker_api.o  ./mbed-os/features/storage/system_storage/SystemStorage.o  ./mbed-os/features/storage/nvstore/source/nvstore.o  ./mbed-os/features/storage/kvstore/tdbstore/TDBStore.o  ./mbed-os/features/storage/kvstore/securestore/SecureStore.o  ./mbed-os/features/storage/kvstore/kv_map/KVMap.o  ./mbed-os/features/storage/kvstore/global_api/kvstore_global_api.o  ./mbed-os/features/storage/kvstore/filesystemstore/FileSystemStore.o  ./mbed-os/features/storage/kvstore/direct_access_devicekey/DirectAccessDevicekey.o  ./mbed-os/features/storage/kvstore/conf/kv_config.o  ./mbed-os/features/storage/filesystem/littlefs/littlefs/lfs.o ./mbed-os/features/storage/filesystem/littlefs/littlefs/lfs_util.o  ./mbed-os/features/storage/filesystem/littlefs/LittleFileSystem.o  ./mbed-os/features/storage/filesystem/fat/ChaN/ff.o ./mbed-os/features/storage/filesystem/fat/ChaN/ffunicode.o  ./mbed-os/features/storage/filesystem/fat/FATFileSystem.o  ./mbed-os/features/storage/filesystem/Dir.o ./mbed-os/features/storage/filesystem/File.o ./mbed-os/features/storage/filesystem/FileSystem.o  ./mbed-os/features/storage/blockdevice/BufferedBlockDevice.o ./mbed-os/features/storage/blockdevice/ChainingBlockDevice.o ./mbed-os/features/storage/blockdevice/ExhaustibleBlockDevice.o ./mbed-os/features/storage/blockdevice/FlashSimBlockDevice.o ./mbed-os/features/storage/blockdevice/HeapBlockDevice.o ./mbed-os/features/storage/blockdevice/MBRBlockDevice.o ./mbed-os/features/storage/blockdevice/ObservingBlockDevice.o ./mbed-os/features/storage/blockdevice/ProfilingBlockDevice.o ./mbed-os/features/storage/blockdevice/ReadOnlyBlockDevice.o ./mbed-os/features/storage/blockdevice/SlicingBlockDevice.o  ./mbed-os/features/nfc/stack/transceiver/pn512/pn512.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_cmd.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_hw.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_irq.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_poll.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_registers.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_rf.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_timer.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_transceive.o  ./mbed-os/features/nfc/stack/transceiver/transceiver.o  ./mbed-os/features/nfc/stack/tech/type4/type4_target.o  ./mbed-os/features/nfc/stack/tech/isodep/isodep_target.o  ./mbed-os/features/nfc/stack/tech/iso7816/iso7816.o ./mbed-os/features/nfc/stack/tech/iso7816/iso7816_app.o  ./mbed-os/features/nfc/stack/platform/nfc_scheduler.o ./mbed-os/features/nfc/stack/platform/nfc_transport.o  ./mbed-os/features/nfc/stack/ndef/ndef.o  ./mbed-os/features/nfc/source/nfc/ndef/common/Mime.o ./mbed-os/features/nfc/source/nfc/ndef/common/SimpleMessageParser.o ./mbed-os/features/nfc/source/nfc/ndef/common/Text.o ./mbed-os/features/nfc/source/nfc/ndef/common/URI.o ./mbed-os/features/nfc/source/nfc/ndef/common/util.o  ./mbed-os/features/nfc/source/nfc/ndef/MessageBuilder.o ./mbed-os/features/nfc/source/nfc/ndef/MessageParser.o ./mbed-os/features/nfc/source/nfc/ndef/RecordParser.o  ./mbed-os/features/nfc/source/nfc/NFCController.o ./mbed-os/features/nfc/source/nfc/NFCControllerDriver.o ./mbed-os/features/nfc/source/nfc/NFCEEPROM.o ./mbed-os/features/nfc/source/nfc/NFCEEPROMDriver.o ./mbed-os/features/nfc/source/nfc/NFCNDEFCapable.o ./mbed-os/features/nfc/source/nfc/NFCRemoteEndpoint.o ./mbed-os/features/nfc/source/nfc/NFCRemoteInitiator.o ./mbed-os/features/nfc/source/nfc/NFCTarget.o ./mbed-os/features/nfc/source/nfc/Type4RemoteInitiator.o  ./mbed-os/features/nfc/source/controllers/PN512Driver.o ./mbed-os/features/nfc/source/controllers/PN512SPITransportDriver.o ./mbed-os/features/nfc/source/controllers/PN512TransportDriver.o  ./mbed-os/features/nfc/acore/source/ac_buffer.o ./mbed-os/features/nfc/acore/source/ac_buffer_builder.o ./mbed-os/features/nfc/acore/source/ac_buffer_reader.o ./mbed-os/features/nfc/acore/source/ac_stream.o  ./mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC/TARGET_K66F/hardware_init_MK66F18.o  ./mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC/kinetis_emac.o  ./mbed-os/features/netsocket/cellular/generic_modem_driver/OnboardCellularInterface.o ./mbed-os/features/netsocket/cellular/generic_modem_driver/PPPCellularInterface.o ./mbed-os/features/netsocket/cellular/generic_modem_driver/UARTCellularInterface.o  ./mbed-os/features/netsocket/DTLSSocket.o ./mbed-os/features/netsocket/DTLSSocketWrapper.o ./mbed-os/features/netsocket/EMACInterface.o ./mbed-os/features/netsocket/EMACMemoryManager.o ./mbed-os/features/netsocket/EthernetInterface.o ./mbed-os/features/netsocket/InternetSocket.o ./mbed-os/features/netsocket/NetworkInterface.o ./mbed-os/features/netsocket/NetworkInterfaceDefaults.o ./mbed-os/features/netsocket/NetworkStack.o ./mbed-os/features/netsocket/SocketAddress.o ./mbed-os/features/netsocket/SocketStats.o ./mbed-os/features/netsocket/TCPServer.o ./mbed-os/features/netsocket/TCPSocket.o ./mbed-os/features/netsocket/TLSSocket.o ./mbed-os/features/netsocket/TLSSocketWrapper.o ./mbed-os/features/netsocket/UDPSocket.o ./mbed-os/features/netsocket/WiFiAccessPoint.o ./mbed-os/features/netsocket/nsapi_dns.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/multicast_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_6lowpan_parameter_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_ipv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_load_balance.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_mle.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_rpl.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_short_address_extension.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_test.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/ns_net.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/socket_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/dhcp_service_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/libDHCPv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/libDHCPv6_server.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack/ipv6_routing_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack/protocol_ipv6.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/whiteboard/whiteboard.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/isqrt.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/ns_crc.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/ns_file_system.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/pan_blacklist/pan_blacklist.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/nd_proxy/nd_proxy.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_buffer.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_frame_counter_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_interface.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_security.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_fnet_events.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_fnet_port.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_mdns_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mac_neighbor_table/mac_neighbor_table.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/load_balance/load_balance.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fnv_hash/fnv_hash.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/channel_list.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_channel.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_common.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_configuration_interface.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_statistics.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_ws_empty_functions.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/etx/etx.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/blacklist/blacklist.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Trickle/trickle.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/SHA256_Lib/ns_sha256.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/SHA256_Lib/shalib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Neighbor_cache/neighbor_cache.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/mbedOS/aes_mbedtls_adapter.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/ccm_security.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS/tls_ccm_crypt.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS/tls_lib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/eap_protocol.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_avp.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_eap_header.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_header.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_relay_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_server.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/Common/security_lib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_control.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_data.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_downward.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_mrhof.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_objective.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_of0.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_policy.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_upward.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_core.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_core_sleep.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_stats.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_timer.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MPL/mpl.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MLE/mle.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MLE/mle_tlv.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf/virtual_rf_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf/virtual_rf_driver.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/serial/serial_mac_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/ethernet/ethernet_mac_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_fhss_callbacks.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_filter.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_header_helper_functions.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_indirect_data.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_mcps_sap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_mlme.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_pd_sap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_security_mib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/sw_mac.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/rf_driver_storage.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_client/dhcpv6_client_service.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_Server/DHCPv6_Server_service.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/address.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/buffer_dyn.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/ns_socket.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/sockbuf.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6_prefix.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6_radv.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_flow.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_fragmentation.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_resolution.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/mld.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/tcp.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/udp.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/BorderRouter/border_router.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ws/ws_empty_functions.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_bbr_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_beacon.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_border_router_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_commissioning_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_commissioning_if.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_common.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_dhcpv6_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_diagnostic.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_discovery.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_host_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_joiner_application.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_leader_service.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_lowpower_private_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_if.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_mdns.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_meshcop_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_mle_message_handler.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_nd.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_neighbor_class.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_net_config_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_data_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_data_storage.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_synch.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_nvm_store.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_resolution_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_resolution_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_router_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_routing.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_test_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/NVM/nwk_nvm.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ND/nd_router_object.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Mesh/mesh.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/beacon_handler.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_data_poll.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_helper.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_ie_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_pairwise_key.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_response_handler.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/6lowpan_iphc.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/iphc_compress.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/iphc_decompress.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/lowpan_context.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Fragmentation/cipv6_fragmenter.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/network_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan_interface.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/adaptation_interface.o  ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/event.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/minar_hal_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/ns_timeout.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/ns_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/system_timer.o  ./mbed-os/features/nanostack/nanostack-interface/Nanostack.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/nvm/nvm_ram.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/cs_nvm/cs_nvm.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_fhss_timer.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_interrupt.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_random.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_timer.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop_mbed.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop_mutex.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_hal_init.o  ./mbed-os/features/nanostack/mbed-mesh-api/source/CallbackHandler.o ./mbed-os/features/nanostack/mbed-mesh-api/source/LoWPANNDInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/MeshInterfaceNanostack.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEMACInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEthernetInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackMemoryManager.o ./mbed-os/features/nanostack/mbed-mesh-api/source/ThreadInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/WisunInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/ethernet_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/mesh_system.o ./mbed-os/features/nanostack/mbed-mesh-api/source/nd_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/thread_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/wisun_tasklet.o  ./mbed-os/features/nanostack/coap-service/source/coap_connection_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_message_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_security_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_service_api.o  ./mbed-os/features/mbedtls/targets/hash_wrappers.o  ./mbed-os/features/mbedtls/src/aes.o ./mbed-os/features/mbedtls/src/aesni.o ./mbed-os/features/mbedtls/src/arc4.o ./mbed-os/features/mbedtls/src/aria.o ./mbed-os/features/mbedtls/src/asn1parse.o ./mbed-os/features/mbedtls/src/asn1write.o ./mbed-os/features/mbedtls/src/base64.o ./mbed-os/features/mbedtls/src/bignum.o ./mbed-os/features/mbedtls/src/blowfish.o ./mbed-os/features/mbedtls/src/camellia.o ./mbed-os/features/mbedtls/src/ccm.o ./mbed-os/features/mbedtls/src/certs.o ./mbed-os/features/mbedtls/src/chacha20.o ./mbed-os/features/mbedtls/src/chachapoly.o ./mbed-os/features/mbedtls/src/cipher.o ./mbed-os/features/mbedtls/src/cipher_wrap.o ./mbed-os/features/mbedtls/src/cmac.o ./mbed-os/features/mbedtls/src/ctr_drbg.o ./mbed-os/features/mbedtls/src/debug.o ./mbed-os/features/mbedtls/src/des.o ./mbed-os/features/mbedtls/src/dhm.o ./mbed-os/features/mbedtls/src/ecdh.o ./mbed-os/features/mbedtls/src/ecdsa.o ./mbed-os/features/mbedtls/src/ecjpake.o ./mbed-os/features/mbedtls/src/ecp.o ./mbed-os/features/mbedtls/src/ecp_curves.o ./mbed-os/features/mbedtls/src/entropy.o ./mbed-os/features/mbedtls/src/entropy_poll.o ./mbed-os/features/mbedtls/src/error.o ./mbed-os/features/mbedtls/src/gcm.o ./mbed-os/features/mbedtls/src/havege.o ./mbed-os/features/mbedtls/src/hkdf.o ./mbed-os/features/mbedtls/src/hmac_drbg.o ./mbed-os/features/mbedtls/src/md.o ./mbed-os/features/mbedtls/src/md2.o ./mbed-os/features/mbedtls/src/md4.o ./mbed-os/features/mbedtls/src/md5.o ./mbed-os/features/mbedtls/src/md_wrap.o ./mbed-os/features/mbedtls/src/memory_buffer_alloc.o ./mbed-os/features/mbedtls/src/net_sockets.o ./mbed-os/features/mbedtls/src/nist_kw.o ./mbed-os/features/mbedtls/src/oid.o ./mbed-os/features/mbedtls/src/padlock.o ./mbed-os/features/mbedtls/src/pem.o ./mbed-os/features/mbedtls/src/pk.o ./mbed-os/features/mbedtls/src/pk_wrap.o ./mbed-os/features/mbedtls/src/pkcs11.o ./mbed-os/features/mbedtls/src/pkcs12.o ./mbed-os/features/mbedtls/src/pkcs5.o ./mbed-os/features/mbedtls/src/pkparse.o ./mbed-os/features/mbedtls/src/pkwrite.o ./mbed-os/features/mbedtls/src/platform.o ./mbed-os/features/mbedtls/src/platform_util.o ./mbed-os/features/mbedtls/src/poly1305.o ./mbed-os/features/mbedtls/src/ripemd160.o ./mbed-os/features/mbedtls/src/rsa.o ./mbed-os/features/mbedtls/src/rsa_internal.o ./mbed-os/features/mbedtls/src/sha1.o ./mbed-os/features/mbedtls/src/sha256.o ./mbed-os/features/mbedtls/src/sha512.o ./mbed-os/features/mbedtls/src/ssl_cache.o ./mbed-os/features/mbedtls/src/ssl_ciphersuites.o ./mbed-os/features/mbedtls/src/ssl_cli.o ./mbed-os/features/mbedtls/src/ssl_cookie.o ./mbed-os/features/mbedtls/src/ssl_srv.o ./mbed-os/features/mbedtls/src/ssl_ticket.o ./mbed-os/features/mbedtls/src/ssl_tls.o ./mbed-os/features/mbedtls/src/threading.o ./mbed-os/features/mbedtls/src/timing.o ./mbed-os/features/mbedtls/src/version.o ./mbed-os/features/mbedtls/src/version_features.o ./mbed-os/features/mbedtls/src/x509.o ./mbed-os/features/mbedtls/src/x509_create.o ./mbed-os/features/mbedtls/src/x509_crl.o ./mbed-os/features/mbedtls/src/x509_crt.o ./mbed-os/features/mbedtls/src/x509_csr.o ./mbed-os/features/mbedtls/src/x509write_crt.o ./mbed-os/features/mbedtls/src/x509write_csr.o ./mbed-os/features/mbedtls/src/xtea.o  ./mbed-os/features/mbedtls/platform/src/mbed_trng.o ./mbed-os/features/mbedtls/platform/src/platform_alt.o  ./mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/src/default_random_seed.o  ./mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_NSPE/src/psa_hrng.o  ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage_file.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage_its.o  ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_arc4.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_des.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_md4.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_md5.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_sha1.o  ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_auth.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ccp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap-md5.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap-new.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap_ms.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_demand.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_eap.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ecp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_eui64.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_fsm.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ipcp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ipv6cp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_lcp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_magic.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_mppe.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_multilink.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ppp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppapi.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppcrypt.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppoe.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppol2tp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppos.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_upap.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_utils.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_vj.o  ./mbed-os/features/lwipstack/lwip/src/netif/lwip_ethernet.o ./mbed-os/features/lwipstack/lwip/src/netif/lwip_ethernetif.o ./mbed-os/features/lwipstack/lwip/src/netif/lwip_lowpan6.o  ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_dhcp6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ethip6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_icmp6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_inet6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6_addr.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6_frag.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_mld6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_nd6.o  ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_autoip.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_dhcp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_etharp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_icmp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_igmp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4_addr.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4_frag.o  ./mbed-os/features/lwipstack/lwip/src/core/lwip_def.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_dns.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_inet_chksum.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_init.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_ip.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_mem.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_memp.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_netif.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_pbuf.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_raw.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_stats.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_sys.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp_in.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp_out.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_timeouts.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_udp.o  ./mbed-os/features/lwipstack/lwip/src/api/lwip_api_lib.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_api_msg.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_err.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netbuf.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netdb.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netifapi.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_sockets.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_tcpip.o  ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_checksum.o ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_memcpy.o ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_sys_arch.o  ./mbed-os/features/lwipstack/lwip-sys/lwip_random.o ./mbed-os/features/lwipstack/lwip-sys/lwip_tcp_isn.o  ./mbed-os/features/lwipstack/LWIPInterface.o ./mbed-os/features/lwipstack/LWIPInterfaceEMAC.o ./mbed-os/features/lwipstack/LWIPMemoryManager.o ./mbed-os/features/lwipstack/LWIPStack.o ./mbed-os/features/lwipstack/lwip_tools.o ./mbed-os/features/lwipstack/ppp_lwip.o  ./mbed-os/features/lorawan/system/LoRaWANTimer.o  ./mbed-os/features/lorawan/lorastack/phy/LoRaPHY.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYAS923.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYAU915.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYCN470.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYCN779.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYEU433.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYEU868.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYIN865.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYKR920.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYUS915.o  ./mbed-os/features/lorawan/lorastack/mac/LoRaMac.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacChannelPlan.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacCommand.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacCrypto.o  ./mbed-os/features/lorawan/LoRaWANInterface.o ./mbed-os/features/lorawan/LoRaWANStack.o  ./mbed-os/features/frameworks/utest/source/unity_handler.o ./mbed-os/features/frameworks/utest/source/utest_case.o ./mbed-os/features/frameworks/utest/source/utest_default_handlers.o ./mbed-os/features/frameworks/utest/source/utest_greentea_handlers.o ./mbed-os/features/frameworks/utest/source/utest_harness.o ./mbed-os/features/frameworks/utest/source/utest_shim.o ./mbed-os/features/frameworks/utest/source/utest_stack_trace.o ./mbed-os/features/frameworks/utest/source/utest_types.o  ./mbed-os/features/frameworks/utest/mbed-utest-shim.o  ./mbed-os/features/frameworks/unity/source/unity.o  ./mbed-os/features/frameworks/nanostack-libservice/source/nvmHelper/ns_nvm_helper.o  ./mbed-os/features/frameworks/nanostack-libservice/source/nsdynmemLIB/nsdynmemLIB.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libip6string/ip6tos.o ./mbed-os/features/frameworks/nanostack-libservice/source/libip6string/stoip6.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libip4string/ip4tos.o ./mbed-os/features/frameworks/nanostack-libservice/source/libip4string/stoip4.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libList/ns_list.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libBits/common_functions.o  ./mbed-os/features/frameworks/nanostack-libservice/source/IPv6_fcf_lib/ip_fsc.o  ./mbed-os/features/frameworks/mbed-trace/source/mbed_trace.o  ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_builder.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_header_check.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_parser.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_protocol.o  ./mbed-os/features/frameworks/mbed-client-randlib/source/randLIB.o  ./mbed-os/features/frameworks/mbed-client-cli/source/ns_cmdline.o  ./mbed-os/features/frameworks/greentea-client/source/greentea_metrics.o ./mbed-os/features/frameworks/greentea-client/source/greentea_serial.o ./mbed-os/features/frameworks/greentea-client/source/greentea_test_env.o  ./mbed-os/features/device_key/source/DeviceKey.o  ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularContext.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularPower.o  ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularContext.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularPower.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularStack.o  ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularContext.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularPower.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularPower.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularStack.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularStack.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularStack.o  ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularContext.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularPower.o  ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularContext.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularStack.o  ./mbed-os/features/cellular/framework/device/CellularContext.o ./mbed-os/features/cellular/framework/device/CellularDevice.o ./mbed-os/features/cellular/framework/device/CellularStateMachine.o  ./mbed-os/features/cellular/framework/common/CellularLog.o ./mbed-os/features/cellular/framework/common/CellularUtil.o  ./mbed-os/features/cellular/framework/AT/ATHandler.o ./mbed-os/features/cellular/framework/AT/AT_CellularBase.o ./mbed-os/features/cellular/framework/AT/AT_CellularContext.o ./mbed-os/features/cellular/framework/AT/AT_CellularDevice.o ./mbed-os/features/cellular/framework/AT/AT_CellularInformation.o ./mbed-os/features/cellular/framework/AT/AT_CellularNetwork.o ./mbed-os/features/cellular/framework/AT/AT_CellularPower.o ./mbed-os/features/cellular/framework/AT/AT_CellularSIM.o ./mbed-os/features/cellular/framework/AT/AT_CellularSMS.o ./mbed-os/features/cellular/framework/AT/AT_CellularStack.o  ./mbed-os/events/equeue/equeue.o ./mbed-os/events/equeue/equeue_mbed.o ./mbed-os/events/equeue/equeue_posix.o  ./mbed-os/events/EventQueue.o ./mbed-os/events/mbed_shared_queues.o  ./mbed-os/drivers/AnalogIn.o ./mbed-os/drivers/BusIn.o ./mbed-os/drivers/BusInOut.o ./mbed-os/drivers/BusOut.o ./mbed-os/drivers/CAN.o ./mbed-os/drivers/Ethernet.o ./mbed-os/drivers/FlashIAP.o ./mbed-os/drivers/I2C.o ./mbed-os/drivers/I2CSlave.o ./mbed-os/drivers/InterruptIn.o ./mbed-os/drivers/InterruptManager.o ./mbed-os/drivers/MbedCRC.o ./mbed-os/drivers/QSPI.o ./mbed-os/drivers/RawSerial.o ./mbed-os/drivers/SPI.o ./mbed-os/drivers/SPISlave.o ./mbed-os/drivers/Serial.o ./mbed-os/drivers/SerialBase.o ./mbed-os/drivers/TableCRC.o ./mbed-os/drivers/Ticker.o ./mbed-os/drivers/Timeout.o ./mbed-os/drivers/Timer.o ./mbed-os/drivers/TimerEvent.o ./mbed-os/drivers/UARTSerial.o  ./mbed-os/components/wifi/esp8266-driver/ESP8266/ESP8266.o  ./mbed-os/components/wifi/esp8266-driver/ESP8266Interface.o  ./mbed-os/components/storage/blockdevice/COMPONENT_SD/SDBlockDevice.o  ./mbed-os/components/storage/blockdevice/COMPONENT_FLASHIAP/FlashIAPBlockDevice.o  ./mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_IMPL/pits_impl.o  ./mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_EMUL/psa_prot_internal_storage.o  ./mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source/NanostackRfPhys2lp.o ./mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source/rf_configuration.o  ./mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source/MCR20Drv.o ./mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source/NanostackRfPhyMcr20a.o  ./mbed-os/components/802.15.4_RF/atmel-rf-driver/source/NanostackRfPhyAtmel.o ./mbed-os/components/802.15.4_RF/atmel-rf-driver/source/at24mac.o  ./mbed-os/cmsis/TARGET_CORTEX_M/TOOLCHAIN_GCC/except.o  ./mbed-os/cmsis/TARGET_CORTEX_M/mbed_fault_handler.o ./mbed-os/cmsis/TARGET_CORTEX_M/mbed_tz_context.o  ./main.o   -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys
process_begin: CreateProcess(NULL, C:/Users/noname/AppData/Roaming/GNU MCU Eclipse/Build Tools/2.11-20180428-1604/bin/sh.exe -c "arm-none-eabi-g++ -mcpu=cortex-m4 -mthumb -mfloat-abi=softfp -mfpu=fpv4-sp-d16 -O0 -fmessage-length=0 -ffunction-sections -fdata-sections -fno-builtin -funsigned-char -fno-delete-null-pointer-checks -fomit-frame-pointer -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers  -g3 -T \"F:/k66x/Debug/linker-script-debug.ld\" -Xlinker --gc-sections -Xlinker --wrap=main -Xlinker --wrap=_malloc_r -Xlinker --wrap=_free_r -Xlinker --wrap=_realloc_r -Xlinker --wrap=_memalign_r -Xlinker --wrap=_calloc_r -Xlinker --wrap=exit -Xlinker --wrap=atexit -Wl,-Map,\"k66x.map\" -DMBED_DEBUG -DMBED_TRAP_ERRORS_ENABLED=1 -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -Wl,-n -DMBED_ROM_START=0x0 -DMBED_ROM_SIZE=0x200000 -DMBED_RAM_START=0x20000000 -DMBED_RAM_SIZE=0x30000 -DMBED_RAM1_START=0x1fff0000 -DMBED_RAM1_SIZE=0x10000 -DMBED_BOOT_STACK_SIZE=1024 -Wl,--start-group -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys -Wl,--end-group -o \"k66x.elf\"  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogin_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/analogout_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/dma_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/flash_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/gpio_irq_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/i2c_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/lp_ticker.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/pinmap.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/port_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/qspi_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/rtc_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/api/sleep.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_adc16.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_clock.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_cmp.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_cmt.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_crc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dac.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dmamux.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dspi.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_dspi_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_enet.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_ewm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flash.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flexbus.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_flexcan.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_ftm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_gpio.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_i2c.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_i2c_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_llwu.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lmem_cache.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lptmr.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lpuart.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_lpuart_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pdb.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pit.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_pmc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rcm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rnga.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_rtc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sai.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sai_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sdhc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sdramc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sim.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_smc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_sysmpu.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_tpm.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_tsi_v4.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_uart.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_uart_edma.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_vref.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/drivers/fsl_wdog.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/TOOLCHAIN_GCC_ARM/startup_MK66F18.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/device/system_MK66F18.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/PeripheralPins.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/crc.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/fsl_clock_config.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/fsl_phy.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/TARGET_FRDM/mbed_overrides.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/pwmout_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/serial_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/spi_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/trng_api.o ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/TARGET_K66F/us_ticker.o  ./mbed-os/targets/TARGET_Freescale/TARGET_MCUXpresso_MCUS/fsl_common.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/Source/os_systick.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/Source/os_tick_ptim.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/TOOLCHAIN_GCC/TARGET_RTOS_M4_M7/irq_cm4f.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_delay.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_evflags.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_evr.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_kernel.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_lib.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_memory.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_mempool.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_msgqueue.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_mutex.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_semaphore.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_system.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_thread.o ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Source/rtx_timer.o  ./mbed-os/rtos/TARGET_CORTEX/rtx5/RTX/Config/RTX_Config.o  ./mbed-os/rtos/TARGET_CORTEX/rtx4/cmsis_os1.o  ./mbed-os/rtos/TARGET_CORTEX/TOOLCHAIN_GCC_ARM/mbed_boot_gcc_arm.o  ./mbed-os/rtos/TARGET_CORTEX/SysTimer.o ./mbed-os/rtos/TARGET_CORTEX/mbed_boot.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtos_rtx.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtx_handlers.o ./mbed-os/rtos/TARGET_CORTEX/mbed_rtx_idle.o  ./mbed-os/rtos/ConditionVariable.o ./mbed-os/rtos/EventFlags.o ./mbed-os/rtos/Kernel.o ./mbed-os/rtos/Mutex.o ./mbed-os/rtos/RtosTimer.o ./mbed-os/rtos/Semaphore.o ./mbed-os/rtos/ThisThread.o ./mbed-os/rtos/Thread.o  ./mbed-os/platform/ATCmdParser.o ./mbed-os/platform/CThunkBase.o ./mbed-os/platform/CallChain.o ./mbed-os/platform/FileBase.o ./mbed-os/platform/FileHandle.o ./mbed-os/platform/FilePath.o ./mbed-os/platform/FileSystemHandle.o ./mbed-os/platform/LocalFileSystem.o ./mbed-os/platform/Stream.o ./mbed-os/platform/mbed_alloc_wrappers.o ./mbed-os/platform/mbed_application.o ./mbed-os/platform/mbed_assert.o ./mbed-os/platform/mbed_board.o ./mbed-os/platform/mbed_critical.o ./mbed-os/platform/mbed_error.o ./mbed-os/platform/mbed_error_hist.o ./mbed-os/platform/mbed_interface.o ./mbed-os/platform/mbed_mem_trace.o ./mbed-os/platform/mbed_mktime.o ./mbed-os/platform/mbed_mpu_mgmt.o ./mbed-os/platform/mbed_poll.o ./mbed-os/platform/mbed_retarget.o ./mbed-os/platform/mbed_rtc_time.o ./mbed-os/platform/mbed_sdk_boot.o ./mbed-os/platform/mbed_semihost_api.o ./mbed-os/platform/mbed_sleep_manager.o ./mbed-os/platform/mbed_stats.o ./mbed-os/platform/mbed_wait_api_no_rtos.o ./mbed-os/platform/mbed_wait_api_rtos.o  ./mbed-os/hal/mpu/mbed_mpu_v7m.o ./mbed-os/hal/mpu/mbed_mpu_v8m.o  ./mbed-os/hal/LowPowerTickerWrapper.o ./mbed-os/hal/mbed_critical_section_api.o ./mbed-os/hal/mbed_flash_api.o ./mbed-os/hal/mbed_gpio.o ./mbed-os/hal/mbed_itm_api.o ./mbed-os/hal/mbed_lp_ticker_api.o ./mbed-os/hal/mbed_lp_ticker_wrapper.o ./mbed-os/hal/mbed_pinmap_common.o ./mbed-os/hal/mbed_ticker_api.o ./mbed-os/hal/mbed_us_ticker_api.o  ./mbed-os/features/storage/system_storage/SystemStorage.o  ./mbed-os/features/storage/nvstore/source/nvstore.o  ./mbed-os/features/storage/kvstore/tdbstore/TDBStore.o  ./mbed-os/features/storage/kvstore/securestore/SecureStore.o  ./mbed-os/features/storage/kvstore/kv_map/KVMap.o  ./mbed-os/features/storage/kvstore/global_api/kvstore_global_api.o  ./mbed-os/features/storage/kvstore/filesystemstore/FileSystemStore.o  ./mbed-os/features/storage/kvstore/direct_access_devicekey/DirectAccessDevicekey.o  ./mbed-os/features/storage/kvstore/conf/kv_config.o  ./mbed-os/features/storage/filesystem/littlefs/littlefs/lfs.o ./mbed-os/features/storage/filesystem/littlefs/littlefs/lfs_util.o  ./mbed-os/features/storage/filesystem/littlefs/LittleFileSystem.o  ./mbed-os/features/storage/filesystem/fat/ChaN/ff.o ./mbed-os/features/storage/filesystem/fat/ChaN/ffunicode.o  ./mbed-os/features/storage/filesystem/fat/FATFileSystem.o  ./mbed-os/features/storage/filesystem/Dir.o ./mbed-os/features/storage/filesystem/File.o ./mbed-os/features/storage/filesystem/FileSystem.o  ./mbed-os/features/storage/blockdevice/BufferedBlockDevice.o ./mbed-os/features/storage/blockdevice/ChainingBlockDevice.o ./mbed-os/features/storage/blockdevice/ExhaustibleBlockDevice.o ./mbed-os/features/storage/blockdevice/FlashSimBlockDevice.o ./mbed-os/features/storage/blockdevice/HeapBlockDevice.o ./mbed-os/features/storage/blockdevice/MBRBlockDevice.o ./mbed-os/features/storage/blockdevice/ObservingBlockDevice.o ./mbed-os/features/storage/blockdevice/ProfilingBlockDevice.o ./mbed-os/features/storage/blockdevice/ReadOnlyBlockDevice.o ./mbed-os/features/storage/blockdevice/SlicingBlockDevice.o  ./mbed-os/features/nfc/stack/transceiver/pn512/pn512.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_cmd.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_hw.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_irq.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_poll.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_registers.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_rf.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_timer.o ./mbed-os/features/nfc/stack/transceiver/pn512/pn512_transceive.o  ./mbed-os/features/nfc/stack/transceiver/transceiver.o  ./mbed-os/features/nfc/stack/tech/type4/type4_target.o  ./mbed-os/features/nfc/stack/tech/isodep/isodep_target.o  ./mbed-os/features/nfc/stack/tech/iso7816/iso7816.o ./mbed-os/features/nfc/stack/tech/iso7816/iso7816_app.o  ./mbed-os/features/nfc/stack/platform/nfc_scheduler.o ./mbed-os/features/nfc/stack/platform/nfc_transport.o  ./mbed-os/features/nfc/stack/ndef/ndef.o  ./mbed-os/features/nfc/source/nfc/ndef/common/Mime.o ./mbed-os/features/nfc/source/nfc/ndef/common/SimpleMessageParser.o ./mbed-os/features/nfc/source/nfc/ndef/common/Text.o ./mbed-os/features/nfc/source/nfc/ndef/common/URI.o ./mbed-os/features/nfc/source/nfc/ndef/common/util.o  ./mbed-os/features/nfc/source/nfc/ndef/MessageBuilder.o ./mbed-os/features/nfc/source/nfc/ndef/MessageParser.o ./mbed-os/features/nfc/source/nfc/ndef/RecordParser.o  ./mbed-os/features/nfc/source/nfc/NFCController.o ./mbed-os/features/nfc/source/nfc/NFCControllerDriver.o ./mbed-os/features/nfc/source/nfc/NFCEEPROM.o ./mbed-os/features/nfc/source/nfc/NFCEEPROMDriver.o ./mbed-os/features/nfc/source/nfc/NFCNDEFCapable.o ./mbed-os/features/nfc/source/nfc/NFCRemoteEndpoint.o ./mbed-os/features/nfc/source/nfc/NFCRemoteInitiator.o ./mbed-os/features/nfc/source/nfc/NFCTarget.o ./mbed-os/features/nfc/source/nfc/Type4RemoteInitiator.o  ./mbed-os/features/nfc/source/controllers/PN512Driver.o ./mbed-os/features/nfc/source/controllers/PN512SPITransportDriver.o ./mbed-os/features/nfc/source/controllers/PN512TransportDriver.o  ./mbed-os/features/nfc/acore/source/ac_buffer.o ./mbed-os/features/nfc/acore/source/ac_buffer_builder.o ./mbed-os/features/nfc/acore/source/ac_buffer_reader.o ./mbed-os/features/nfc/acore/source/ac_stream.o  ./mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC/TARGET_K66F/hardware_init_MK66F18.o  ./mbed-os/features/netsocket/emac-drivers/TARGET_Freescale_EMAC/kinetis_emac.o  ./mbed-os/features/netsocket/cellular/generic_modem_driver/OnboardCellularInterface.o ./mbed-os/features/netsocket/cellular/generic_modem_driver/PPPCellularInterface.o ./mbed-os/features/netsocket/cellular/generic_modem_driver/UARTCellularInterface.o  ./mbed-os/features/netsocket/DTLSSocket.o ./mbed-os/features/netsocket/DTLSSocketWrapper.o ./mbed-os/features/netsocket/EMACInterface.o ./mbed-os/features/netsocket/EMACMemoryManager.o ./mbed-os/features/netsocket/EthernetInterface.o ./mbed-os/features/netsocket/InternetSocket.o ./mbed-os/features/netsocket/NetworkInterface.o ./mbed-os/features/netsocket/NetworkInterfaceDefaults.o ./mbed-os/features/netsocket/NetworkStack.o ./mbed-os/features/netsocket/SocketAddress.o ./mbed-os/features/netsocket/SocketStats.o ./mbed-os/features/netsocket/TCPServer.o ./mbed-os/features/netsocket/TCPSocket.o ./mbed-os/features/netsocket/TLSSocket.o ./mbed-os/features/netsocket/TLSSocketWrapper.o ./mbed-os/features/netsocket/UDPSocket.o ./mbed-os/features/netsocket/WiFiAccessPoint.o ./mbed-os/features/netsocket/nsapi_dns.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/multicast_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_6lowpan_parameter_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_ipv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_load_balance.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_mle.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_rpl.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_short_address_extension.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/net_test.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/ns_net.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libNET/src/socket_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/dhcp_service_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/libDHCPv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/libDHCPv6/libDHCPv6_server.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack/ipv6_routing_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/ipv6_stack/protocol_ipv6.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/whiteboard/whiteboard.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/isqrt.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/ns_crc.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/utils/ns_file_system.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/pan_blacklist/pan_blacklist.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/nd_proxy/nd_proxy.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_buffer.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_frame_counter_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_interface.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mle_service/mle_service_security.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/stack/fnet_stdlib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/poll/fnet_poll.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/fnet/fnet_stack/services/mdns/fnet_mdns.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_fnet_events.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_fnet_port.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mdns/ns_mdns_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/mac_neighbor_table/mac_neighbor_table.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/load_balance/load_balance.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fnv_hash/fnv_hash.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/channel_list.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_channel.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_common.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_configuration_interface.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_statistics.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/fhss/fhss_ws_empty_functions.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/etx/etx.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/blacklist/blacklist.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Trickle/trickle.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/SHA256_Lib/ns_sha256.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/SHA256_Lib/shalib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/Neighbor_cache/neighbor_cache.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/mbedOS/aes_mbedtls_adapter.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Service_Libs/CCM_lib/ccm_security.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS/tls_ccm_crypt.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/TLS/tls_lib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/eap_protocol.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_avp.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_eap_header.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_header.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_relay_table.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/PANA/pana_server.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Security/Common/security_lib.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_control.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_data.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_downward.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_mrhof.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_objective.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_of0.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_policy.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/RPL/rpl_upward.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_core.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_core_sleep.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_stats.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/NWK_INTERFACE/protocol_timer.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MPL/mpl.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MLE/mle.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MLE/mle_tlv.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf/virtual_rf_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/virtual_rf/virtual_rf_driver.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/serial/serial_mac_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/ethernet/ethernet_mac_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_fhss_callbacks.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_filter.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_header_helper_functions.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_indirect_data.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_mcps_sap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_mlme.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_pd_sap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_security_mib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/mac_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/IEEE802_15_4/sw_mac.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/MAC/rf_driver_storage.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_client/dhcpv6_client_service.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/DHCPv6_Server/DHCPv6_Server_service.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/address.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/buffer_dyn.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/ns_socket.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Core/sockbuf.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6_prefix.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/icmpv6_radv.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_flow.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_fragmentation.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/ipv6_resolution.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/mld.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/tcp.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/Common_Protocols/udp.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/BorderRouter/border_router.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ws/ws_empty_functions.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_bbr_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_beacon.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_border_router_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_commissioning_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_commissioning_if.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_common.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_dhcpv6_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_diagnostic.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_discovery.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_host_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_joiner_application.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_leader_service.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_lowpower_private_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_if.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_management_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_mdns.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_meshcop_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_mle_message_handler.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_nd.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_neighbor_class.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_net_config_api.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_data_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_data_storage.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_network_synch.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_nvm_store.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_resolution_client.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_resolution_server.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_router_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_routing.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Thread/thread_test_api.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/NVM/nwk_nvm.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/ND/nd_router_object.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Mesh/mesh.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/beacon_handler.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_data_poll.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_helper.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_ie_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_pairwise_key.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/MAC/mac_response_handler.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/6lowpan_iphc.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/iphc_compress.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/iphc_decompress.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/IPHC_Decode/lowpan_context.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Fragmentation/cipv6_fragmenter.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/network_lib.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan_bootstrap.o ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/Bootstraps/Generic/protocol_6lowpan_interface.o  ./mbed-os/features/nanostack/sal-stack-nanostack/source/6LoWPAN/adaptation_interface.o  ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/event.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/minar_hal_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/ns_timeout.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/ns_timer.o ./mbed-os/features/nanostack/sal-stack-nanostack-eventloop/source/system_timer.o  ./mbed-os/features/nanostack/nanostack-interface/Nanostack.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/nvm/nvm_ram.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/cs_nvm/cs_nvm.o  ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_fhss_timer.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_interrupt.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_random.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/arm_hal_timer.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop_mbed.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_event_loop_mutex.o ./mbed-os/features/nanostack/nanostack-hal-mbed-cmsis-rtos/ns_hal_init.o  ./mbed-os/features/nanostack/mbed-mesh-api/source/CallbackHandler.o ./mbed-os/features/nanostack/mbed-mesh-api/source/LoWPANNDInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/MeshInterfaceNanostack.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEMACInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEthernetInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/NanostackMemoryManager.o ./mbed-os/features/nanostack/mbed-mesh-api/source/ThreadInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/WisunInterface.o ./mbed-os/features/nanostack/mbed-mesh-api/source/ethernet_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/mesh_system.o ./mbed-os/features/nanostack/mbed-mesh-api/source/nd_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/thread_tasklet.o ./mbed-os/features/nanostack/mbed-mesh-api/source/wisun_tasklet.o  ./mbed-os/features/nanostack/coap-service/source/coap_connection_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_message_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_security_handler.o ./mbed-os/features/nanostack/coap-service/source/coap_service_api.o  ./mbed-os/features/mbedtls/targets/hash_wrappers.o  ./mbed-os/features/mbedtls/src/aes.o ./mbed-os/features/mbedtls/src/aesni.o ./mbed-os/features/mbedtls/src/arc4.o ./mbed-os/features/mbedtls/src/aria.o ./mbed-os/features/mbedtls/src/asn1parse.o ./mbed-os/features/mbedtls/src/asn1write.o ./mbed-os/features/mbedtls/src/base64.o ./mbed-os/features/mbedtls/src/bignum.o ./mbed-os/features/mbedtls/src/blowfish.o ./mbed-os/features/mbedtls/src/camellia.o ./mbed-os/features/mbedtls/src/ccm.o ./mbed-os/features/mbedtls/src/certs.o ./mbed-os/features/mbedtls/src/chacha20.o ./mbed-os/features/mbedtls/src/chachapoly.o ./mbed-os/features/mbedtls/src/cipher.o ./mbed-os/features/mbedtls/src/cipher_wrap.o ./mbed-os/features/mbedtls/src/cmac.o ./mbed-os/features/mbedtls/src/ctr_drbg.o ./mbed-os/features/mbedtls/src/debug.o ./mbed-os/features/mbedtls/src/des.o ./mbed-os/features/mbedtls/src/dhm.o ./mbed-os/features/mbedtls/src/ecdh.o ./mbed-os/features/mbedtls/src/ecdsa.o ./mbed-os/features/mbedtls/src/ecjpake.o ./mbed-os/features/mbedtls/src/ecp.o ./mbed-os/features/mbedtls/src/ecp_curves.o ./mbed-os/features/mbedtls/src/entropy.o ./mbed-os/features/mbedtls/src/entropy_poll.o ./mbed-os/features/mbedtls/src/error.o ./mbed-os/features/mbedtls/src/gcm.o ./mbed-os/features/mbedtls/src/havege.o ./mbed-os/features/mbedtls/src/hkdf.o ./mbed-os/features/mbedtls/src/hmac_drbg.o ./mbed-os/features/mbedtls/src/md.o ./mbed-os/features/mbedtls/src/md2.o ./mbed-os/features/mbedtls/src/md4.o ./mbed-os/features/mbedtls/src/md5.o ./mbed-os/features/mbedtls/src/md_wrap.o ./mbed-os/features/mbedtls/src/memory_buffer_alloc.o ./mbed-os/features/mbedtls/src/net_sockets.o ./mbed-os/features/mbedtls/src/nist_kw.o ./mbed-os/features/mbedtls/src/oid.o ./mbed-os/features/mbedtls/src/padlock.o ./mbed-os/features/mbedtls/src/pem.o ./mbed-os/features/mbedtls/src/pk.o ./mbed-os/features/mbedtls/src/pk_wrap.o ./mbed-os/features/mbedtls/src/pkcs11.o ./mbed-os/features/mbedtls/src/pkcs12.o ./mbed-os/features/mbedtls/src/pkcs5.o ./mbed-os/features/mbedtls/src/pkparse.o ./mbed-os/features/mbedtls/src/pkwrite.o ./mbed-os/features/mbedtls/src/platform.o ./mbed-os/features/mbedtls/src/platform_util.o ./mbed-os/features/mbedtls/src/poly1305.o ./mbed-os/features/mbedtls/src/ripemd160.o ./mbed-os/features/mbedtls/src/rsa.o ./mbed-os/features/mbedtls/src/rsa_internal.o ./mbed-os/features/mbedtls/src/sha1.o ./mbed-os/features/mbedtls/src/sha256.o ./mbed-os/features/mbedtls/src/sha512.o ./mbed-os/features/mbedtls/src/ssl_cache.o ./mbed-os/features/mbedtls/src/ssl_ciphersuites.o ./mbed-os/features/mbedtls/src/ssl_cli.o ./mbed-os/features/mbedtls/src/ssl_cookie.o ./mbed-os/features/mbedtls/src/ssl_srv.o ./mbed-os/features/mbedtls/src/ssl_ticket.o ./mbed-os/features/mbedtls/src/ssl_tls.o ./mbed-os/features/mbedtls/src/threading.o ./mbed-os/features/mbedtls/src/timing.o ./mbed-os/features/mbedtls/src/version.o ./mbed-os/features/mbedtls/src/version_features.o ./mbed-os/features/mbedtls/src/x509.o ./mbed-os/features/mbedtls/src/x509_create.o ./mbed-os/features/mbedtls/src/x509_crl.o ./mbed-os/features/mbedtls/src/x509_crt.o ./mbed-os/features/mbedtls/src/x509_csr.o ./mbed-os/features/mbedtls/src/x509write_crt.o ./mbed-os/features/mbedtls/src/x509write_csr.o ./mbed-os/features/mbedtls/src/xtea.o  ./mbed-os/features/mbedtls/platform/src/mbed_trng.o ./mbed-os/features/mbedtls/platform/src/platform_alt.o  ./mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/src/default_random_seed.o  ./mbed-os/features/mbedtls/platform/TARGET_PSA/COMPONENT_NSPE/src/psa_hrng.o  ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage_file.o ./mbed-os/features/mbedtls/mbed-crypto/platform/TARGET_PSA/COMPONENT_PSA_SRV_IMPL/psa_crypto_storage_its.o  ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_arc4.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_des.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_md4.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_md5.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/polarssl/lwip_sha1.o  ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_auth.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ccp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap-md5.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap-new.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_chap_ms.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_demand.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_eap.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ecp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_eui64.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_fsm.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ipcp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ipv6cp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_lcp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_magic.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_mppe.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_multilink.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_ppp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppapi.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppcrypt.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppoe.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppol2tp.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_pppos.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_upap.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_utils.o ./mbed-os/features/lwipstack/lwip/src/netif/ppp/lwip_vj.o  ./mbed-os/features/lwipstack/lwip/src/netif/lwip_ethernet.o ./mbed-os/features/lwipstack/lwip/src/netif/lwip_ethernetif.o ./mbed-os/features/lwipstack/lwip/src/netif/lwip_lowpan6.o  ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_dhcp6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ethip6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_icmp6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_inet6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6_addr.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_ip6_frag.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_mld6.o ./mbed-os/features/lwipstack/lwip/src/core/ipv6/lwip_nd6.o  ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_autoip.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_dhcp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_etharp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_icmp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_igmp.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4_addr.o ./mbed-os/features/lwipstack/lwip/src/core/ipv4/lwip_ip4_frag.o  ./mbed-os/features/lwipstack/lwip/src/core/lwip_def.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_dns.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_inet_chksum.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_init.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_ip.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_mem.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_memp.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_netif.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_pbuf.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_raw.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_stats.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_sys.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp_in.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_tcp_out.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_timeouts.o ./mbed-os/features/lwipstack/lwip/src/core/lwip_udp.o  ./mbed-os/features/lwipstack/lwip/src/api/lwip_api_lib.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_api_msg.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_err.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netbuf.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netdb.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_netifapi.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_sockets.o ./mbed-os/features/lwipstack/lwip/src/api/lwip_tcpip.o  ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_checksum.o ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_memcpy.o ./mbed-os/features/lwipstack/lwip-sys/arch/lwip_sys_arch.o  ./mbed-os/features/lwipstack/lwip-sys/lwip_random.o ./mbed-os/features/lwipstack/lwip-sys/lwip_tcp_isn.o  ./mbed-os/features/lwipstack/LWIPInterface.o ./mbed-os/features/lwipstack/LWIPInterfaceEMAC.o ./mbed-os/features/lwipstack/LWIPMemoryManager.o ./mbed-os/features/lwipstack/LWIPStack.o ./mbed-os/features/lwipstack/lwip_tools.o ./mbed-os/features/lwipstack/ppp_lwip.o  ./mbed-os/features/lorawan/system/LoRaWANTimer.o  ./mbed-os/features/lorawan/lorastack/phy/LoRaPHY.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYAS923.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYAU915.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYCN470.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYCN779.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYEU433.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYEU868.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYIN865.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYKR920.o ./mbed-os/features/lorawan/lorastack/phy/LoRaPHYUS915.o  ./mbed-os/features/lorawan/lorastack/mac/LoRaMac.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacChannelPlan.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacCommand.o ./mbed-os/features/lorawan/lorastack/mac/LoRaMacCrypto.o  ./mbed-os/features/lorawan/LoRaWANInterface.o ./mbed-os/features/lorawan/LoRaWANStack.o  ./mbed-os/features/frameworks/utest/source/unity_handler.o ./mbed-os/features/frameworks/utest/source/utest_case.o ./mbed-os/features/frameworks/utest/source/utest_default_handlers.o ./mbed-os/features/frameworks/utest/source/utest_greentea_handlers.o ./mbed-os/features/frameworks/utest/source/utest_harness.o ./mbed-os/features/frameworks/utest/source/utest_shim.o ./mbed-os/features/frameworks/utest/source/utest_stack_trace.o ./mbed-os/features/frameworks/utest/source/utest_types.o  ./mbed-os/features/frameworks/utest/mbed-utest-shim.o  ./mbed-os/features/frameworks/unity/source/unity.o  ./mbed-os/features/frameworks/nanostack-libservice/source/nvmHelper/ns_nvm_helper.o  ./mbed-os/features/frameworks/nanostack-libservice/source/nsdynmemLIB/nsdynmemLIB.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libip6string/ip6tos.o ./mbed-os/features/frameworks/nanostack-libservice/source/libip6string/stoip6.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libip4string/ip4tos.o ./mbed-os/features/frameworks/nanostack-libservice/source/libip4string/stoip4.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libList/ns_list.o  ./mbed-os/features/frameworks/nanostack-libservice/source/libBits/common_functions.o  ./mbed-os/features/frameworks/nanostack-libservice/source/IPv6_fcf_lib/ip_fsc.o  ./mbed-os/features/frameworks/mbed-trace/source/mbed_trace.o  ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_builder.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_header_check.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_parser.o ./mbed-os/features/frameworks/mbed-coap/source/sn_coap_protocol.o  ./mbed-os/features/frameworks/mbed-client-randlib/source/randLIB.o  ./mbed-os/features/frameworks/mbed-client-cli/source/ns_cmdline.o  ./mbed-os/features/frameworks/greentea-client/source/greentea_metrics.o ./mbed-os/features/frameworks/greentea-client/source/greentea_serial.o ./mbed-os/features/frameworks/greentea-client/source/greentea_test_env.o  ./mbed-os/features/device_key/source/DeviceKey.o  ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularContext.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/UBLOX/PPP/UBLOX_PPP_CellularPower.o  ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularContext.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularPower.o ./mbed-os/features/cellular/framework/targets/UBLOX/AT/UBLOX_AT_CellularStack.o  ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularContext.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/TELIT/HE910/TELIT_HE910_CellularPower.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/UG96/QUECTEL_UG96_CellularPower.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/M26/QUECTEL_M26_CellularStack.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BG96/QUECTEL_BG96_CellularStack.o  ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularContext.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularPower.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularSIM.o ./mbed-os/features/cellular/framework/targets/QUECTEL/BC95/QUECTEL_BC95_CellularStack.o  ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularContext.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP_CellularPower.o  ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularContext.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularNetwork.o ./mbed-os/features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION_CellularStack.o  ./mbed-os/features/cellular/framework/device/CellularContext.o ./mbed-os/features/cellular/framework/device/CellularDevice.o ./mbed-os/features/cellular/framework/device/CellularStateMachine.o  ./mbed-os/features/cellular/framework/common/CellularLog.o ./mbed-os/features/cellular/framework/common/CellularUtil.o  ./mbed-os/features/cellular/framework/AT/ATHandler.o ./mbed-os/features/cellular/framework/AT/AT_CellularBase.o ./mbed-os/features/cellular/framework/AT/AT_CellularContext.o ./mbed-os/features/cellular/framework/AT/AT_CellularDevice.o ./mbed-os/features/cellular/framework/AT/AT_CellularInformation.o ./mbed-os/features/cellular/framework/AT/AT_CellularNetwork.o ./mbed-os/features/cellular/framework/AT/AT_CellularPower.o ./mbed-os/features/cellular/framework/AT/AT_CellularSIM.o ./mbed-os/features/cellular/framework/AT/AT_CellularSMS.o ./mbed-os/features/cellular/framework/AT/AT_CellularStack.o  ./mbed-os/events/equeue/equeue.o ./mbed-os/events/equeue/equeue_mbed.o ./mbed-os/events/equeue/equeue_posix.o  ./mbed-os/events/EventQueue.o ./mbed-os/events/mbed_shared_queues.o  ./mbed-os/drivers/AnalogIn.o ./mbed-os/drivers/BusIn.o ./mbed-os/drivers/BusInOut.o ./mbed-os/drivers/BusOut.o ./mbed-os/drivers/CAN.o ./mbed-os/drivers/Ethernet.o ./mbed-os/drivers/FlashIAP.o ./mbed-os/drivers/I2C.o ./mbed-os/drivers/I2CSlave.o ./mbed-os/drivers/InterruptIn.o ./mbed-os/drivers/InterruptManager.o ./mbed-os/drivers/MbedCRC.o ./mbed-os/drivers/QSPI.o ./mbed-os/drivers/RawSerial.o ./mbed-os/drivers/SPI.o ./mbed-os/drivers/SPISlave.o ./mbed-os/drivers/Serial.o ./mbed-os/drivers/SerialBase.o ./mbed-os/drivers/TableCRC.o ./mbed-os/drivers/Ticker.o ./mbed-os/drivers/Timeout.o ./mbed-os/drivers/Timer.o ./mbed-os/drivers/TimerEvent.o ./mbed-os/drivers/UARTSerial.o  ./mbed-os/components/wifi/esp8266-driver/ESP8266/ESP8266.o  ./mbed-os/components/wifi/esp8266-driver/ESP8266Interface.o  ./mbed-os/components/storage/blockdevice/COMPONENT_SD/SDBlockDevice.o  ./mbed-os/components/storage/blockdevice/COMPONENT_FLASHIAP/FlashIAPBlockDevice.o  ./mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_IMPL/pits_impl.o  ./mbed-os/components/TARGET_PSA/services/psa_prot_internal_storage/COMPONENT_PSA_SRV_EMUL/psa_prot_internal_storage.o  ./mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source/NanostackRfPhys2lp.o ./mbed-os/components/802.15.4_RF/stm-s2lp-rf-driver/source/rf_configuration.o  ./mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source/MCR20Drv.o ./mbed-os/components/802.15.4_RF/mcr20a-rf-driver/source/NanostackRfPhyMcr20a.o  ./mbed-os/components/802.15.4_RF/atmel-rf-driver/source/NanostackRfPhyAtmel.o ./mbed-os/components/802.15.4_RF/atmel-rf-driver/source/at24mac.o  ./mbed-os/cmsis/TARGET_CORTEX_M/TOOLCHAIN_GCC/except.o  ./mbed-os/cmsis/TARGET_CORTEX_M/mbed_fault_handler.o ./mbed-os/cmsis/TARGET_CORTEX_M/mbed_tz_context.o  ./main.o   -lstdc++ -lsupc++ -lm -lc -lgcc -lnosys", ...) failed.
make (e=87): The parameter is incorrect.

make: *** [makefile:226: k66x.elf] Error 87
"make -j4 all" terminated with exit code 2. Build might be incomplete.

@theotherjimmy
Copy link
Contributor

@JarekParal That's a different exporter than what's modified in this PR.

@JarekParal
Copy link
Contributor

@theotherjimmy Ok, sorry it was my mistake. Do you know if is it possible to use similar fix also for GNU ARM Eclipse export?

@theotherjimmy
Copy link
Contributor

See https://os.mbed.com/docs/mbed-os/v5.11/tools/exporting.html Section "GNU Arm Eclipse on Windows: 8Kb command length limitation"

@JarekParal
Copy link
Contributor

Thanks for this link but the section says that the problem was prior to version 2.6.1. But I have the newest version which should be without problem or not?

@theotherjimmy
Copy link
Contributor

Sorry, I can't really help with this. Feel free to open an issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

8 participants