Skip to content

Instantly share code, notes, and snippets.

@CrshOverride
CrshOverride / CMakeError.log
Created December 3, 2019 16:28
dotnet runtime build error
Checking whether the ASM compiler is GNU using "--version" did not match "(GNU assembler)|(GCC)|(Free Software Foundation)":
clang version 9.0.0-2 (tags/RELEASE_900/final)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin

Keybase proof

I hereby claim:

  • I am CrshOverride on github.
  • I am crshoverride (https://keybase.io/crshoverride) on keybase.
  • I have a public key whose fingerprint is B9DB 2694 35C5 9836 59A3 7B24 4C20 AC66 C3D1 479C

To claim this, I am signing this object:

@CrshOverride
CrshOverride / fish_hg_prompt
Last active August 29, 2015 13:57
Updated version of __fish_hg_prompt that mimics the behavior of posh-hg.
function __fish_hg_prompt --description 'Promp function for Mercurial'
# Colors
set -l color_branch (set_color magenta)
set -l color_branch_behind (set_color red)
set -l color_cleanslate (set_color green)
set -l color_added (set_color green)
set -l color_modified (set_color blue)
set -l color_removed (set_color red)
set -l color_unknown (set_color magenta)
set -l color_deleted (set_color cyan)