[Bug 243265] emulators/qemu-user-static: qemu-aarch64-static SIGILL with openjdk11-bootstrap
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Wed Jan 15 10:53:38 UTC 2020
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=243265
--- Comment #6 from mikael.urankar at gmail.com ---
Created attachment 210756
--> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=210756&action=edit
patch
Can you try the attached patch (it's for
/usr/ports/emulators/qemu-user-static-devel).
It seems to work here, I tried with this program but I haven't checked if the
returned value are sane:
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <machine/armreg.h>
#include <machine/_stdint.h>
int
main(int argc, char **argv)
{
uint64_t id_aa64isar0, id_aa64pfr0;
id_aa64isar0 = READ_SPECIALREG(id_aa64isar0_EL1);
id_aa64pfr0 = READ_SPECIALREG(id_aa64pfr0_EL1);
printf("id_aa64isar0: 0x%lx, id_aa64pfr0: 0x%lx\n", id_aa64isar0,
id_aa64pfr0);
return (0);
}
./identcpu
id_aa64isar0: 0x111110012120, id_aa64pfr0: 0x110000
I haven't tried qemu-user-static.
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the freebsd-emulation
mailing list