summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/hypervisor/1079
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
commitd0c85e36e4de67af628d54e9ab577cc3fad7796a (patch)
treef8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/gemma3:12b/hypervisor/1079
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloademulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/hypervisor/1079')
-rw-r--r--results/classifier/gemma3:12b/hypervisor/107933
1 files changed, 33 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/hypervisor/1079 b/results/classifier/gemma3:12b/hypervisor/1079
new file mode 100644
index 00000000..47a22ee7
--- /dev/null
+++ b/results/classifier/gemma3:12b/hypervisor/1079
@@ -0,0 +1,33 @@
+
+qemu: uncaught target signal 11 (Segmentation fault) - core dumped
+Description of problem:
+I am trying to build `arm64` image on my `x86_64` machine using `buildx` and I have encountered `qemu: uncaught target signal 11 (Segmentation fault) - core dumped` Error. <br>
+#
+Steps to reproduce:
+1. Create a Dockerfile
+```
+FROM python:3.8-slim
+
+ENV PYTHONDONTWRITEBYTECODE=1
+
+# Install packages
+RUN apt update
+RUN apt-get install -y python3-pip
+```
+2. Run binfmt container
+```
+docker run --privileged --rm tonistiigi/binfmt --install all
+```
+3. Setup new builder
+```
+$ docker buildx create --name mybuilder
+$ docker buildx use mybuilder
+$ docker buildx inspect --bootstrap
+```
+4. Build Image
+```
+$ docker buildx build --platform linux/amd64,linux/arm64 --push -t user/failure-case .
+```
+#
+Additional information:
+