diff options
author | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2021-09-29 18:27:19 +0000 |
---|---|---|
committer | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2021-10-06 06:38:58 +0000 |
commit | 2daba273336f03872f3a3a6e3a544ec2301d0a39 (patch) | |
tree | ae14da2c48942f0ddbad214757db876e8d881f3e | |
parent | 9cc8c0382c8b1134fdb48e573746fd50230f850c (diff) | |
download | doc-2daba273336f03872f3a3a6e3a544ec2301d0a39.tar.gz doc-2daba273336f03872f3a3a6e3a544ec2301d0a39.zip |
[phb]: remove references to compiler:openmp
Uses=openmp was removed in 07fb2d5e9d001934f1670d01aec1f536f14ebde2 in ports[1].
Remove references to this option in the Porter's Handbook.
[1] https://cgit.freebsd.org/ports/commit/?id=07fb2d5e9d001934f1670d01aec1f536f14ebde2
-rw-r--r-- | documentation/content/en/books/porters-handbook/uses/_index.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/content/en/books/porters-handbook/uses/_index.adoc b/documentation/content/en/books/porters-handbook/uses/_index.adoc index a4a22c9057..f3b9fe83bc 100644 --- a/documentation/content/en/books/porters-handbook/uses/_index.adoc +++ b/documentation/content/en/books/porters-handbook/uses/_index.adoc @@ -256,11 +256,11 @@ For more information see crossref:special[using-cmake,Using `cmake`]. [[uses-compiler]] == `compiler` -Possible arguments: (none), `env` (default, implicit), `{c-plus-plus}17-lang`, `{c-plus-plus}14-lang`, `{c-plus-plus}11-lang`, `gcc-{c-plus-plus}11-lib`, `{c-plus-plus}11-lib`, `{c-plus-plus}0x`, `c11`, `openmp`, `nestedfct`, `features` +Possible arguments: (none), `env` (default, implicit), `{c-plus-plus}17-lang`, `{c-plus-plus}14-lang`, `{c-plus-plus}11-lang`, `gcc-{c-plus-plus}11-lib`, `{c-plus-plus}11-lib`, `{c-plus-plus}0x`, `c11`, `nestedfct`, `features` Determines which compiler to use based on any given wishes. Use `{c-plus-plus}17-lang` if the port needs a {c-plus-plus}17-capable compiler, `{c-plus-plus}14-lang` if the port needs a {c-plus-plus}14-capable compiler, `{c-plus-plus}11-lang` if the port needs a {c-plus-plus}11-capable compiler, `gcc-{c-plus-plus}11-lib` if the port needs the `g++` compiler with a {c-plus-plus}11 library, or `{c-plus-plus}11-lib` if the port needs a {c-plus-plus}11-ready standard library. -If the port needs a compiler understanding {c-plus-plus}0X, C11, OpenMP, or nested functions, the corresponding parameters should be used. +If the port needs a compiler understanding {c-plus-plus}0X, C11 or nested functions, the corresponding parameters should be used. Use `features` to request a list of features supported by the default compiler. After including [.filename]#bsd.port.pre.mk# the port can inspect the results using these variables: |