diff options
author | Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> | 2025-04-16 18:59:28 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-04-17 11:03:22 +0100 |
commit | 8629aa9f2744d3135d9f8852ff09c26be7258305 (patch) | |
tree | 1c80ffda3bbff6d74c79eaca0bd1c7ddb518bb56 /meta/recipes-devtools | |
parent | 482da5d873a46bc10e7e48c01cdb7ff65a67c4b5 (diff) | |
download | poky-8629aa9f2744d3135d9f8852ff09c26be7258305.tar.gz |
llvm: also install llvm-min-tblgen
Some projects are picky and want to hanve llvm-min-tblgen in addition to
a normal llvm-tblgen. Install the tool to the sysroot.
(From OE-Core rev: b4acbadc16733c29024694ba0e5c0987dc7b459c)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/llvm/llvm_20.1.2.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-devtools/llvm/llvm_20.1.2.bb b/meta/recipes-devtools/llvm/llvm_20.1.2.bb index 4b24d28364..98855fa4c1 100644 --- a/meta/recipes-devtools/llvm/llvm_20.1.2.bb +++ b/meta/recipes-devtools/llvm/llvm_20.1.2.bb | |||
@@ -159,6 +159,7 @@ do_install() { | |||
159 | 159 | ||
160 | do_install:append:class-native() { | 160 | do_install:append:class-native() { |
161 | install -D -m 0755 ${B}/bin/llvm-tblgen ${D}${bindir}/llvm-tblgen${PV} | 161 | install -D -m 0755 ${B}/bin/llvm-tblgen ${D}${bindir}/llvm-tblgen${PV} |
162 | install -D -m 0755 ${B}/bin/llvm-min-tblgen ${D}${bindir}/llvm-min-tblgen | ||
162 | install -D -m 0755 ${B}/bin/llvm-config ${D}${bindir}/llvm-config${PV} | 163 | install -D -m 0755 ${B}/bin/llvm-config ${D}${bindir}/llvm-config${PV} |
163 | ln -sf llvm-config${PV} ${D}${bindir}/llvm-config | 164 | ln -sf llvm-config${PV} ${D}${bindir}/llvm-config |
164 | 165 | ||