File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ jobs:
59
59
- docker exec -w /zephyrproject zephyr-ci west update
60
60
- docker exec -w /zephyrproject zephyr-ci west zephyr-export
61
61
script :
62
- - docker exec zephyr-ci west build -b qemu_x86 -- -DCONF_FILE=prj_minimal.conf
63
- - docker exec zephyr-ci west build -b frdm_k64f -- -DCONF_FILE=prj_minimal.conf
64
- - docker exec zephyr-ci west build -b qemu_x86
65
- - docker exec zephyr-ci west build -b frdm_k64f
66
- - docker exec zephyr-ci west build -b mimxrt1050_evk
67
- - docker exec zephyr-ci west build -b reel_board
62
+ - docker exec zephyr-ci west build -b qemu_x86 -- -G'Unix Makefiles' - DCONF_FILE=prj_minimal.conf
63
+ - docker exec zephyr-ci west build -b frdm_k64f -- -G'Unix Makefiles' - DCONF_FILE=prj_minimal.conf
64
+ - docker exec zephyr-ci west build -b qemu_x86 -- -G'Unix Makefiles'
65
+ - docker exec zephyr-ci west build -b frdm_k64f -- -G'Unix Makefiles'
66
+ - docker exec zephyr-ci west build -b mimxrt1050_evk -- -G'Unix Makefiles'
67
+ - docker exec zephyr-ci west build -b reel_board -- -G'Unix Makefiles'
68
68
69
69
# unix port on OSX (first in list because the build VM takes a long time to start)
70
70
- stage : test
Original file line number Diff line number Diff line change @@ -56,11 +56,11 @@ not have to be in the `ports/zephyr` directory. Assuming you have cloned the
56
56
MicroPython repository into your home directory, you can build the Zephyr port
57
57
for a frdm_k64f board like this:
58
58
59
- $ west build -b frdm_k64f ~/micropython/ports/zephyr
59
+ $ west build -b frdm_k64f ~/micropython/ports/zephyr -- -G'Unix Makefiles'
60
60
61
61
To build for QEMU instead:
62
62
63
- $ west build -b qemu_x86 ~/micropython/ports/zephyr
63
+ $ west build -b qemu_x86 ~/micropython/ports/zephyr -- -G'Unix Makefiles'
64
64
65
65
Consult the Zephyr documentation above for the list of
66
66
supported boards. Board configuration files appearing in ` ports/zephyr/boards/ `
@@ -152,7 +152,7 @@ enabled over time.
152
152
153
153
To make a minimal build:
154
154
155
- $ west build -b qemu_x86 ~/micropython/ports/zephyr -- -DCONF_FILE=prj_minimal.conf
155
+ $ west build -b qemu_x86 ~/micropython/ports/zephyr -- -G'Unix Makefiles' - DCONF_FILE=prj_minimal.conf
156
156
157
157
To run a minimal build in QEMU without requiring TAP networking setup
158
158
run the following after you built an image with the previous command:
You can’t perform that action at this time.
0 commit comments