Building and running your first app
The processes to build and run a Zephyr application are the same across operating systems. We will be looking at the commands used in the VM.
Building Hello World
- Enter the zephyr project directory, it is the folder on the desktop
- source the zephyr env
$ source zephyr.sh
move to samples/hello_world
run the make command to build the code and start the simulator
$ make BOARD=qemu_x86 run
you have not built and launched the zephyr hello_world example!
Notes
- [ ] Create a start workspace that is not the one from Zephyr
- [ ] Reduce the complexity of the build