Skip to content

Instantly share code, notes, and snippets.

@apteryks
apteryks / gist:b130bd056a725877a421f2759af7da10
Created June 17, 2025 03:13
LibreWolf crashing when executed from inside Electron (strace capture)
This file has been truncated, but you can view the full file.
8437 execve("/gnu/store/gwv34xwl926vm08hrj2kvs0147ihkzf7-librewolf-139.0.1-1/lib/librewolf/.librewolf-real", ["/gnu/store/gwv34xwl926vm08hrj2kvs0147ihkzf7-librewolf-139.0.1-1/bin/librewolf", "https://www.fukuoka-now.com/en/event/canadaday2025/"], 0x1e2e9090 /* 137 vars */) = 0
8437 brk(NULL) = 0x55736b9d7000
8437 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f95a4bf6000
8437 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f95a4bf4000
8437 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f95a4bf2000
8437 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (Aucun fichier ou dossier de ce nom)
8437 openat(AT_FDCWD, "/gnu/store/5m03c8wx0bsbhfr7zh8s8bzbg7k4pm28-eudev-3.2.14/lib/glibc-hwcaps/x86-64-v4/libstdc++.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (Aucun fichier ou dossier de ce nom)
This file has been truncated, but you can view the full file.
starting phase `set-SOURCE-DATE-EPOCH'
phase `set-SOURCE-DATE-EPOCH' succeeded after 0.0 seconds
starting phase `set-paths'
starting phase `configure'
source directory: "/tmp/guix-build-cling-0.9-1.d78d1a0.drv-0/source" (relative from build: "../source")
build directory: "/tmp/guix-build-cling-0.9-1.d78d1a0.drv-0/build"
running 'cmake' with arguments ("../source" "-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_INSTALL_PREFIX=/gnu/store/s41l6b7prjby369gyczxpji2x48gakss-cling-0.9-1.d78d1a0" "-DCMAKE_INSTALL_LIBDIR=lib" "-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE" "-DCMAKE_INSTALL_RPATH=/gnu/store/s41l6b7prjby369gyczxpji2x48gakss-cling-0.9-1.d78d1a0/lib" "-DCMAKE_VERBOSE_MAKEFILE=ON" "-DCLING_CXX_PATH=/gnu/store/rn75fm7adgx3pw5j8pg3bczfqq1y17lk-gcc-7.5.0/bin/g++" "-DLLVM_PARALLEL_LINK_JOBS=1" "-DLLVM_TARGETS_TO_BUILD=host;NVPTX" "-DLLVM_ENABLE_EH=ON" "-DLLVM_ENABLE_RTTI=ON" "-DLLVM_BUILD_LLVM_DYLIB=OFF" "-DLLVM_LINK_LLVM_DYLIB=Off" "-DLLVM_ENABLE_PLUGINS=ON")
-- The C compiler identification is GNU 7.5.0
-- The CXX compiler identification is GNU 7.5.0
-- Check for working C compiler: /gnu/store/rn75fm7adgx3pw5j8pg3bczfqq1y17lk-gcc-7.5.0/bin/gcc
@apteryks
apteryks / dwphw1is0mlphmwaspacl26f0krzqv-weasyprint-52.1.drv
Last active November 28, 2020 08:20
Weasyprint test suite failures on GNU Guix
dependencies: [email protected] [email protected] [email protected] [email protected] [email protected]
+ [email protected] [email protected] [email protected] [email protected]
+ [email protected] [email protected] [email protected] [email protected]
+ [email protected]
substitute:
substitute: updating substitutes from 'https://ci.guix.gnu.org'... 0.0%
substitute: updating substitutes from 'https://ci.guix.gnu.org'... 100.0%
@ build-started /gnu/store/jidwphw1is0mlphmwaspacl26f0krzqv-weasyprint-52.1.drv - x86_64-linux /var/log/guix/drvs/ji//dwphw1is0mlphmwaspacl26f0krzqv-weasyprint-52.1.drv.bz2 14317
starting phase `set-SOURCE-DATE-EPOCH'
@apteryks
apteryks / buganizer-to-rst.el
Last active May 29, 2016 21:54
Preview of buganizer-to-rst.el
(require 'cl-lib)
(require 'rst)
(require 'csv) ; Depends on Ulf Jasper's csv.el module.
(defun parse-csv-file (file)
"Parse a csv file using the `csv-parse-buffer' method of `csv.el'."
(interactive (list (read-file-name "CSV file: ")))
(with-temp-buffer
(insert-file-contents file)
(csv-parse-buffer t (current-buffer))))