Skip to content

Instantly share code, notes, and snippets.

q@mypc:calculix-build-pastix$ ./07_build_pastix_kabbone.sh
patching file CMakeLists.txt
patching file spm/src/spm.c
patching file bcsc/bcsc_z.h
-- The C compiler identification is GNU 13.3.0
-- The CXX compiler identification is GNU 13.3.0
-- The Fortran compiler identification is GNU 13.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc13 - skipped
q@mypc:calculix-build-pastix$ ./05_build_parsec.sh
patching file parsec/bindthread.c
-- The C compiler identification is GNU 13.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc13 - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- The Fortran compiler identification is GNU 13.3.0
-- Detecting Fortran compiler ABI info
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by hwloc configure 2.10.0, which was
generated by GNU Autoconf 2.71. Invocation command line was
$ ./configure --prefix=/tmp/my_cache/calculix-build-pastix --disable-shared --enable-static --disable-readme --disable-picky --disable-cairo --disable-libxml2 --disable-levelzero
## --------- ##
## Platform. ##
patching file CMakeLists.txt
patching file spm/src/spm.c
patching file bcsc/bcsc_z.h
-- The C compiler identification is GNU 13.3.0
-- The CXX compiler identification is GNU 13.3.0
-- The Fortran compiler identification is GNU 13.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/gcc13 - skipped
-- Detecting C compile features
@QiangF
QiangF / fmg-biff.el
Created April 21, 2024 01:01 — forked from fgilham/fmg-biff.el
Emacs Wanderlust mail notifier
;;; -*- Mode: EMACS-LISP -*-
;;; A fancy notify hook for Wanderlust.
;;;
;;; Time-stamp: <2019-09-26 15:45:18 fred>
;;;
;;;; Usage:
;;;
;;; 1. Set the variable wl-biff-check-folder-list to the list of
@QiangF
QiangF / repeat-mode-config.el
Created April 11, 2024 06:01 — forked from karthink/repeat-mode-config.el
repeat-mode configuration with which-key for Emacs 28
(use-package repeat
:if (version< "28.0" emacs-version)
:bind ("H-z" . repeat)
:hook (after-init . my/repeat-mode)
:config
(defun my/repeat-mode ()
(let ((inhibit-message t)
(message-log-max nil))
(repeat-mode)))
@QiangF
QiangF / hlwm.el
Created April 7, 2024 09:53 — forked from wdkrnls/hlwm.el
hlwm.el: control herbstluftwm from emacs
;;;; HLWM convience tools
;; author: Kyle Andrews
;; license: GPL V3 or later
(defun bash-path ()
"Return all the executables in the path according to bash.
This does not work as well as dmenu-path since it includes bash
reserved words in the result."
@QiangF
QiangF / hideshow-config.el
Created February 10, 2024 06:46 — forked from dsjt/hideshow-config.el
hideshow config for python
(require 'hideshow)
(define-key hs-minor-mode-map (kbd "C-^") 'hs-toggle-hiding)
(add-hook 'python-mode-hook 'hs-minor-mode)
(defun display-code-line-counts (ov)
(when (eq 'code (overlay-get ov 'hs))
(overlay-put ov 'display
(format " ... [%d]"
(count-lines (overlay-start ov)
(overlay-end ov))))
(overlay-put ov 'face '(:foreground "yellow green"))))
@QiangF
QiangF / init.el
Created January 1, 2024 08:37 — forked from include-yy/init.el
include-yy's emacs config file
;;; init.el --- include-yy's emacs config -*- lexical-binding:t; -*-
;; Copyright (C) 2023 include-yy <yy@egh0bww1.com>
;; Author: include-yy <yy@egh0bww1.com>
;; Created: 17 Jun 2023
;; Version: 0.1
;; Keywords: config
;; URL: https://gist.github.com/include-yy/e70dcbfc1a80403814d0b7a7357971d9
@QiangF
QiangF / .dir-locals.el
Created January 1, 2024 02:46 — forked from doolio/.dir-locals.el
.dir-locals.el for use with the Emacs Eglot LSP client and python-lsp-server (pylsp) LSP server
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")
;;; Commentary:
;; .dir-locals.el for use with the Emacs Eglot LSP client and
;; python-lsp-server (pylsp) LSP server v1.9.0.
;; Default values in accordance with
;; https://github.com/python-lsp/python-lsp-server/blob/v1.9.0/CONFIGURATION.md