ish-app / ish

Linux shell for iOS
https://ish.app
Other
16.87k stars 887 forks source link

graphviz "Illegal instruction" when changing node shape #1552

Open merni-ns opened 3 years ago

merni-ns commented 3 years ago

I am using the graphviz software (https://www.graphviz.org/) which is used to draw diagrams.

When the program dot (part of graphviz) is run on the following input file:

digraph Blah {
  node [shape="box"];
  A -> B -> C;
  B -> D;
}

The "illegal instruction" error occurs. dmesg gives the output, 16 illegal instruction at 0xf7f06913: d9 fb d9 c9 dd 9c 24 90

However, the file works when the node shape is not changed (this is definitely), and also when the shape of individual nodes except the first node are changed. (I tested this only once, may be wrong.)

The same error occurs whether graphviz is installed from apk or compiled from source. (Compiled v 2.48.0 from source, from http://graphviz.org/download/source/)

The file that gives an error works fine on ordinary Alpine Linux when tested on VirtualBox.

saagarjha commented 3 years ago

fsincos