work1
Dependencies: mbed MAX44009 mbed-os Si7021
refresh_database.sh@0:d3e390d62607, 2020-05-27 (annotated)
- Committer:
- danaeb
- Date:
- Wed May 27 11:37:29 2020 +0000
- Revision:
- 0:d3e390d62607
create
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
danaeb | 0:d3e390d62607 | 1 | # /bin/bash |
danaeb | 0:d3e390d62607 | 2 | |
danaeb | 0:d3e390d62607 | 3 | export PATH=$PATH:/tools/gcc-arm-none-eabi-6-2017-q2-update/bin |
danaeb | 0:d3e390d62607 | 4 | # Mbed export override the .mbedignore so we save it and restore it at the end of process |
danaeb | 0:d3e390d62607 | 5 | cp .mbedignore .mbedignore.back |
danaeb | 0:d3e390d62607 | 6 | mbed export -i cmake_gcc_arm |
danaeb | 0:d3e390d62607 | 7 | cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON . |
danaeb | 0:d3e390d62607 | 8 | |
danaeb | 0:d3e390d62607 | 9 | # Clean |
danaeb | 0:d3e390d62607 | 10 | mv .mbedignore.back .mbedignore |
danaeb | 0:d3e390d62607 | 11 | rm -rf CMakeFiles |
danaeb | 0:d3e390d62607 | 12 | rm CMakeLists.txt |
danaeb | 0:d3e390d62607 | 13 | rm cmake_install.cmake |
danaeb | 0:d3e390d62607 | 14 | rm CMakeCache.txt |
danaeb | 0:d3e390d62607 | 15 | rm Makefile |
danaeb | 0:d3e390d62607 | 16 | rm GettingStarted.html |
danaeb | 0:d3e390d62607 | 17 | |
danaeb | 0:d3e390d62607 | 18 |