diff options
author | Prefetch | 2024-09-08 22:02:56 +0200 |
---|---|---|
committer | Prefetch | 2024-09-08 22:02:56 +0200 |
commit | 05f779c72d987d0c2a060f93c9493c86b109587c (patch) | |
tree | 67bb08c87ea472f0ea0f7dabf803986670a7bf83 | |
parent | dee3ce1536168c9ed5c8c90d8008073afdb51cb9 (diff) |
Fix build and update configuration
-rw-r--r-- | Gemfile | 1 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | _config.yml | 2 |
3 files changed, 6 insertions, 1 deletions
@@ -3,6 +3,7 @@ source "https://rubygems.org" gem "jekyll" gem "webrick" gem "json" +gem "erb" # https://github.com/rubyjs/mini_racer gem "mini_racer" @@ -14,9 +14,13 @@ all its extensions needed by this website as listed in the `Gemfile`: ```sh $ bundle config set --local path .bundle +$ bundle config build.posix-spawn --with-cflags="-Wno-incompatible-pointer-types" $ bundle install ``` +First try to run `bundle install` without changing any `CFLAGS`, +it used to work like that, but not anymore as of mid-2024. + Now you should be able to run a local development version with: ```sh diff --git a/_config.yml b/_config.yml index 5023f33..250ed0c 100644 --- a/_config.yml +++ b/_config.yml @@ -16,7 +16,7 @@ kramdown: macros: "\\Real": "\\mathop{\\mathrm{Re}}" "\\Imag": "\\mathop{\\mathrm{Im}}" - "\\pv": "\\:\\mathop{\\mathcal{P}}" + "\\pv": "\\:\\mathcal{P}\\!" "\\cross": "\\times" "\\va": "\\vec{\\mathbf{#1}}" "\\vb": "\\mathbf{#1}" |