Skip to content

Commit ad45de3

Browse files
authored
Merge pull request #355 from ARMmbed/update-docs-build-dir
Update documentation regarding build directory
2 parents 7611f84 + 7b1c63a commit ad45de3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -339,15 +339,15 @@ Allocated Stack: 32768 bytes
339339
Total Static RAM memory (data + bss): 10788 bytes
340340
Total RAM memory (data + bss + heap + stack): 109096 bytes
341341
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
343343
```
344344

345345
The arguments for *compile* are:
346346

347347
* `-m <MCU>` to select a target.
348348
* `-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).
349349
* `--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.
351351
* `--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
352352
* `--library` to compile the code as a [static .a/.ar library](#compiling-static-libraries).
353353
* `--config` to inspect the run-time compile configuration (see below).
@@ -509,14 +509,14 @@ The arguments to `test` are:
509509
* `--run` to only run the tests
510510
* `-n <TESTS_BY_NAME>` to limit the tests built or ran to a comma separated list (ex. test1,test2,test3)
511511
* `--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.
513513
* `--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
514514
* `-c or --clean` to clean the build directory before compiling,
515515
* `--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).
516516
* `-v` or `--verbose` for verbose diagnostic output.
517517
* `-vv` or `--very_verbose` for very verbose diagnostic output.
518518

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.
520520

521521
#### Finding available tests
522522

0 commit comments

Comments
 (0)