...

Text file src/github.com/bytedance/sonic/scripts/qemu.sh

Documentation: github.com/bytedance/sonic/scripts

     1#!/bin/sh
     2arch=$(uname -m)
     3if echo $arch | grep -q 'arm'; then
     4    printf ' #!/bin/bash\n if [ ! -x "/usr/bin/qemu-x86_64" ];then\n sudo apt-get update\n sudo apt-get -y install make gcc g++ libglib2.0-dev libpixman-1-dev libfdt-dev python3-pip ninja-build\n sudo pip3 install meson\n wget https://download.qemu.org/qemu-6.2.0.tar.xz\n tar -xvf qemu-6.2.0.tar.xz\n cd qemu-6.2.0\n sudo ./configure\n sudo make -j 4\n sudo make install\n cd ..\n cp /usr/local/bin/qemu-x86_64  /usr/bin/qemu-x86_64\n fi\n' > qemu_install.sh
     5    chmod +x qemu_install.sh
     6    ./qemu_install.sh
     7    GOARCH=amd64 go test -c .
     8    qemu-x86_64 -cpu max ./sonic.test -test.v
     9fi

View as plain text