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).
@@ -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.
0 commit comments