From 036037bf6fc54c24876b47c2ffa861dcb52c666f Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Thu, 10 Nov 2022 10:45:31 +0100 Subject: [PATCH] [web] Fixed gcc links. --- web/content/docs/devguide/environments/docker/index.md | 2 +- .../devguide/environments/redistributable-builds/index.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/content/docs/devguide/environments/docker/index.md b/web/content/docs/devguide/environments/docker/index.md index e13d9735d9e..dca9e767bce 100644 --- a/web/content/docs/devguide/environments/docker/index.md +++ b/web/content/docs/devguide/environments/docker/index.md @@ -72,4 +72,4 @@ There are docker images provided on the [GitLab Container Registry](https://gitl Even better for development is the usage of [Singularity container]({{< relref "singularity.md" >}}) because they offer a transparent mapping of the user to container space. -[^1]: From [GCC docs](https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html): *Intel Ivy Bridge CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, POPCNT, CX16, SAHF, FXSR, AVX, XSAVE, PCLMUL, FSGSBASE, RDRND and F16C instruction set support.* +[^1]: From [GCC docs](https://gcc.gnu.org/onlinedocs/gcc/gcc-command-options/machine-dependent-options/x86-options.html): *Intel Ivy Bridge CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, POPCNT, CX16, SAHF, FXSR, AVX, XSAVE, PCLMUL, FSGSBASE, RDRND and F16C instruction set support.* diff --git a/web/content/docs/devguide/environments/redistributable-builds/index.md b/web/content/docs/devguide/environments/redistributable-builds/index.md index 019c25ac39f..d730b3fd663 100644 --- a/web/content/docs/devguide/environments/redistributable-builds/index.md +++ b/web/content/docs/devguide/environments/redistributable-builds/index.md @@ -40,11 +40,11 @@ If a binary runs on a different machine depends on a lot of factors. The followi #### For redistribution -- `OGS_CPU_ARCHITECTURE`: set to `generic` for good balance between optimization and portability; set to `core2` for maximum portability, more info on [GCC docs](https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html#index-mtune-15) +- `OGS_CPU_ARCHITECTURE`: set to `generic` for good balance between optimization and portability; set to `core2` for maximum portability, more info on [GCC docs](https://gcc.gnu.org/onlinedocs/gcc/gcc-command-options/machine-dependent-options/x86-options.html#cmdoption-x86-mtune) #### For optimization -- `OGS_CPU_ARCHITECTURE`: tot to `native` for best optimization for your current CPU, possible values are [listed here](https://stackoverflow.com/a/25095818/80480), more info on [GCC docs](https://gcc.gnu.org/onlinedocs/gcc/x86-Options.html#index-mtune-15) +- `OGS_CPU_ARCHITECTURE`: tot to `native` for best optimization for your current CPU, possible values are [listed here](https://stackoverflow.com/a/25095818/80480), more info on [GCC docs](https://gcc.gnu.org/onlinedocs/gcc/gcc-command-options/machine-dependent-options/x86-options.html#cmdoption-x86-mtune) </div> -- GitLab