Step 2 : Configure and Build QEMU =================================== .. tab-set:: .. tab-item:: Configure and Build QEMU * In this program, you are going to learn .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow * How to ? .. panels:: :container: container pb-4 :column: col-lg-12 p-2 :card: shadow Topics in this section, * :ref:`Configure and Build QEMU ` .. _barelinux_qemu_rpi_3b_step2_0: .. tab-set:: .. tab-item:: Configure and Build QEMU * set the execution permission for configure file using the following command. .. code-block:: c $ chmod +x configure * run the configure script to configure the build settings. .. code-block:: c $ ./configure * once the configuration is done run make to build. .. code-block:: c $ make * Add the build directory path in the bashrc file. .. code-block:: c $ vim ~/.bashrc export PATH=$PATH:$HOME/qemu-6.2.0/build * Reload the environment by executing this command. .. code-block:: c $ source ~/.bashrc