[clang] [clang][docs] fix rendering of `$`-prefixed options (PR #119249)
Carlo Cabrera via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 9 11:12:35 PST 2024
https://github.com/carlocab created https://github.com/llvm/llvm-project/pull/119249
This was added in #117573 but the options were not being rendered
correctly due to the missing newline after `::`.
>From ed70bf358357a5b54599db4a89e61588fd96aca7 Mon Sep 17 00:00:00 2001
From: Carlo Cabrera <github at carlo.cab>
Date: Tue, 10 Dec 2024 03:09:11 +0800
Subject: [PATCH] [clang][docs] fix rendering of `$`-prefixed options
This was added in #117573 but the options were not being rendered
correctly due to the missing newline after `::`.
---
clang/docs/UsersManual.rst | 1 +
1 file changed, 1 insertion(+)
diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst
index 5b7a293a4ecc27..8af9f5be644a02 100644
--- a/clang/docs/UsersManual.rst
+++ b/clang/docs/UsersManual.rst
@@ -1066,6 +1066,7 @@ is being invoked, and added after all of the command-line specified linker
inputs. Here is some example of ``$``-prefixed options:
::
+
$-Wl,-Bstatic $-lm
$-Wl,-Bshared
More information about the cfe-commits
mailing list