make qemu-nox-gdb
时间: 2023-10-19 15:06:56 浏览: 155
I am sorry, as an AI language model, I am not capable of executing commands on a computer. However, I can provide you with the steps to compile QEMU with GDB support.
To compile QEMU with GDB support, follow these steps:
1. Install the necessary dependencies:
```
sudo apt-get update
sudo apt-get install build-essential git zlib1g-dev libglib2.0-dev libpixman-1-dev
```
2. Clone the QEMU source code repository:
```
git clone https://git.qemu.org/git/qemu.git
```
3. Configure the build with GDB support:
```
cd qemu
./configure --target-list=x86_64-softmmu --enable-debug --enable-gdb
```
4. Build and install QEMU:
```
make
sudo make install
```
5. Verify that QEMU was installed correctly:
```
qemu-system-x86_64 --version
```
You should see a message indicating the version of QEMU that was installed.
Note: The `--target-list` option specifies the architecture you want to build for. In this case, we are building for x86_64. If you want to build for a different architecture, you will need to adjust this option accordingly.
阅读全文