Skip to content

Instantly share code, notes, and snippets.

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))))