You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Total Flash memory (text + data + misc): 66014 bytes
342
-
Image: .build/K64F/GCC_ARM/mbed-os-program.bin
342
+
Image: build/K64F/GCC_ARM/mbed-os-program.bin
343
343
```
344
344
345
345
The arguments for *compile* are:
346
346
347
347
*`-m <MCU>` to select a target.
348
348
*`-t <TOOLCHAIN>` to select a toolchain (of those defined in `mbed_settings.py`, see above). The value can be either `ARM` (ARM Compiler 5), `GCC_ARM` (GNU ARM Embedded), or `IAR` (IAR Embedded Workbench for ARM).
349
349
*`--source <SOURCE>` to select the source directory. The default is `.` (the current directorty). You can specify multiple source locations, even outside the program tree.
350
-
*`--build <BUILD>` to select the build directory. Default: `.build/` inside your program.
350
+
*`--build <BUILD>` to select the build directory. Default: `build/` inside your program.
351
351
*`--options <OPTIONS>` to select compile options. Examples: "debug-info": will generate debugging information; "small-build" will use microlib/nanolib, but limit RTOS to single thread; "save-asm": will save the asm generated by the compiler
352
352
*`--library` to compile the code as a [static .a/.ar library](#compiling-static-libraries).
353
353
*`--config` to inspect the run-time compile configuration (see below).
@@ -357,7 +357,7 @@ The arguments for *compile* are:
357
357
*`-v` or `--verbose` for verbose diagnostic output.
358
358
*`-vv` or `--very_verbose` for very verbose diagnostic output.
359
359
360
-
The compiled binary, ELF image, memory usage and link statistics can be found in the `.build` subdirectory of your program.
360
+
The compiled binary, ELF image, memory usage and link statistics can be found in the `build` subdirectory of your program.
@@ -509,14 +509,14 @@ The arguments to `test` are:
509
509
*`--run` to only run the tests
510
510
*`-n <TESTS_BY_NAME>` to limit the tests built or ran to a comma separated list (ex. test1,test2,test3)
511
511
*`--source <SOURCE>` to select the source directory. Default is `.` (the current dir). You can specify multiple source locations, even outside the program tree.
512
-
*`--build <BUILD>` to select the build directory. Default: `.build/` inside your program.
512
+
*`--build <BUILD>` to select the build directory. Default: `build/` inside your program.
513
513
*`--options <OPTIONS>` to select compile options. Examples: "debug-info": will generate debugging information; "small-build" will use microlib/nanolib, but limit RTOS to single thread; "save-asm": will save the asm generated by the compiler
514
514
*`-c or --clean` to clean the build directory before compiling,
515
515
*`--test-spec <TEST_SPEC>` to set the path for the test spec file used when building and running tests (the default path is the build directory).
516
516
*`-v` or `--verbose` for verbose diagnostic output.
517
517
*`-vv` or `--very_verbose` for very verbose diagnostic output.
518
518
519
-
The compiled binaries and test artifacts can be found in the `.build/tests/<TARGET>/<TOOLCHAIN>` directory of your program.
519
+
The compiled binaries and test artifacts can be found in the `build/tests/<TARGET>/<TOOLCHAIN>` directory of your program.
520
520
521
521
#### Finding available tests
522
522
@@ -539,9 +539,9 @@ You can find the tests that are available for **running** by using the `--run-li
539
539
540
540
```
541
541
$ mbed test --run-list
542
-
mbedgt: test specification file '.\.build/tests\K64F\ARM\test_spec.json' (specified with --test-spec option)
543
-
mbedgt: using '.\.build/tests\K64F\ARM\test_spec.json' from current directory!
544
-
mbedgt: available tests for built 'K64F-ARM', location '.\.build/tests\K64F\ARM'
542
+
mbedgt: test specification file '.\build\tests\K64F\ARM\test_spec.json' (specified with --test-spec option)
543
+
mbedgt: using '.\build\tests\K64F\ARM\test_spec.json' from current directory!
544
+
mbedgt: available tests for built 'K64F-ARM', location '.\build\tests\K64F\ARM'
dict(name=['-o', '--options'], action='append', help='Compile options. Examples: "debug-info": generate debugging information; "small-build" to use microlib/nanolib, but limit RTOS to single thread; "save-asm": save the asm generated by the compiler'),
2103
2118
dict(name=['-c', '--clean'], action='store_true', help='Clean the build directory before compiling'),
2104
2119
dict(name='--test-spec', dest="test_spec", help="Path used for the test spec file used when building and running tests (the default path is the build directory)"),
Copy file name to clipboardExpand all lines: setup.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
19
19
setup(
20
20
name="mbed-cli",
21
-
version="0.9.5",
21
+
version="0.9.7",
22
22
description="ARM mbed command line tool for repositories version control, publishing and updating code from remotely hosted repositories (GitHub, GitLab and mbed.org), and invoking mbed OS own build system and export functions, among other operations",
0 commit comments