Skip to content

Commit a8e61b8

Browse files
committed
Build aarch64 emulators
1 parent e7da097 commit a8e61b8

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

bin/qemu-aarch64

Whitespace-only changes.

bin/qemu-system-aarch64

Whitespace-only changes.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55
"bin": {
66
"ivshmem-client": "bin/ivshmem-client",
77
"ivshmem-server": "bin/ivshmem-server",
8+
"qemu-aarch64": "bin/qemu-aarch64",
89
"qemu-arm": "bin/qemu-arm",
910
"qemu-ga": "bin/qemu-ga",
1011
"qemu-i386": "bin/qemu-i386",
1112
"qemu-img": "bin/qemu-img",
1213
"qemu-io": "bin/qemu-io",
1314
"qemu-nbd": "bin/qemu-nbd",
15+
"qemu-system-aarch64": "bin/qemu-system-aarch64",
1416
"qemu-system-arm": "bin/qemu-system-arm",
1517
"qemu-system-i386": "bin/qemu-system-i386",
1618
"qemu-system-x86_64": "bin/qemu-system-x86_64",
@@ -55,4 +57,4 @@
5557
"type": "DirectoryIndex",
5658
"url": "http://wiki.qemu-project.org/download/"
5759
}
58-
}
60+
}

scripts/build

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
set -o pipefail
44

55

6-
TARGET_LIST=arm-softmmu,i386-softmmu,x86_64-softmmu
6+
TARGET_LIST=aarch64-softmmu,arm-softmmu,i386-softmmu,x86_64-softmmu
7+
TARGET_USER=aarch64-linux-user,arm-linux-user,i386-linux-user,x86_64-linux-user
78

89
QEMU_VERSION=`node -p "require('./package.json').version"`
910

@@ -42,7 +43,7 @@ case $OS in
4243
'Linux')
4344
PLATFORM=linux
4445
AUDIO=alsa
45-
TARGET_LIST+=,arm-linux-user,i386-linux-user,x86_64-linux-user
46+
TARGET_LIST+=,$TARGET_USER
4647
DISPLAY=sdl
4748
PRODUCTS=(bin libexec share)
4849
;;
@@ -64,7 +65,7 @@ case $OS in
6465
'AIX')
6566
PLATFORM=linux
6667
AUDIO=alsa
67-
TARGET_LIST+=,arm-linux-user,i386-linux-user,x86_64-linux-user
68+
TARGET_LIST+=,$TARGET_USER
6869
DISPLAY=sdl
6970
PRODUCTS=(bin libexec share)
7071
;;

0 commit comments

Comments
 (0)