Bugs in simulator 1.2.0 #166
Closed
kartun83
started this conversation in
Developer Feedback
Replies: 1 comment 1 reply
-
Thank you for your feedback, I will feedback this issue to the relevant colleagues. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
There is a critical bug in simulator build 1.2.0 (latest to date), which prevents running any app in sim.
To be short:
in device.js
const { device = [] } = lodash_1.find(cacheList, { id: platform }) || {};
should be replaced with
const { device = [] } = lodash_1.find(cacheList, { id: platform.id }) || {};
also in create-simulator.js
should be patched to reflect that platform is an object with properties :)
possibly there are other parts that needs to be changed, but at least with this modifications simulator is able to run programs deployed with zeus.
Also suggestion:
add some flag to simulator so it would launch qemu without sudo.
Beta Was this translation helpful? Give feedback.
All reactions