diff options
Diffstat (limited to 'meta-oe/recipes-extended/minifi-cpp/files/0005-Pass-noline-flag-to-flex.patch')
-rw-r--r-- | meta-oe/recipes-extended/minifi-cpp/files/0005-Pass-noline-flag-to-flex.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/meta-oe/recipes-extended/minifi-cpp/files/0005-Pass-noline-flag-to-flex.patch b/meta-oe/recipes-extended/minifi-cpp/files/0005-Pass-noline-flag-to-flex.patch deleted file mode 100644 index 53939131ff..0000000000 --- a/meta-oe/recipes-extended/minifi-cpp/files/0005-Pass-noline-flag-to-flex.patch +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | From 083babbd6c6cc6f31530fbac0227c1d426fb0863 Mon Sep 17 00:00:00 2001 | ||
2 | From: Yi Zhao <yi.zhao@windriver.com> | ||
3 | Date: Tue, 19 Mar 2024 21:00:59 +0800 | ||
4 | Subject: [PATCH] Pass --noline flag to flex | ||
5 | |||
6 | This ensures that line directive is not emitted into lexer output which | ||
7 | could be absolute build paths. | ||
8 | |||
9 | Upstream-Status: Inappropriate [embedded specific] | ||
10 | |||
11 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> | ||
12 | --- | ||
13 | extensions/expression-language/CMakeLists.txt | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/extensions/expression-language/CMakeLists.txt b/extensions/expression-language/CMakeLists.txt | ||
17 | index 775b4116..84edc617 100644 | ||
18 | --- a/extensions/expression-language/CMakeLists.txt | ||
19 | +++ b/extensions/expression-language/CMakeLists.txt | ||
20 | @@ -77,7 +77,7 @@ flex_target( | ||
21 | el-scanner | ||
22 | ${CMAKE_CURRENT_SOURCE_DIR}/Scanner.ll | ||
23 | ${CMAKE_CURRENT_SOURCE_DIR}/Scanner.cpp | ||
24 | - COMPILE_FLAGS --c++ | ||
25 | + COMPILE_FLAGS "--c++ --noline" | ||
26 | ) | ||
27 | |||
28 | add_flex_bison_dependency(el-scanner el-parser) | ||
29 | -- | ||
30 | 2.25.1 | ||
31 | |||