summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/ovmf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2024-07-12 07:35:48 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-07-13 23:28:30 +0100
commit1cf0974ad242f7eb2815a4ef0e3e5b6507ca56ea (patch)
tree41ef242b95aa4468862e728bef229545a77d9c11 /meta/recipes-core/ovmf
parent3891414b6b929cc3eed9d7ea62e9cda70bba29a0 (diff)
downloadpoky-1cf0974ad242f7eb2815a4ef0e3e5b6507ca56ea.tar.gz
bitbake.conf: Further cleanup compiler optimization flags
Move the -pipe option out of the optimization flags and directly into the flags variables since we always use it now. Also move the debug prefix mapping there to match the nativesdk case which already does this. Fix the documentation and two recipe usages to match the change. (From OE-Core rev: 9badf68d78d995f7d5d4cf27e045f029fc6d4044) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/ovmf')
-rw-r--r--meta/recipes-core/ovmf/ovmf_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/ovmf/ovmf_git.bb b/meta/recipes-core/ovmf/ovmf_git.bb
index 35ca8d1834..085574c0cb 100644
--- a/meta/recipes-core/ovmf/ovmf_git.bb
+++ b/meta/recipes-core/ovmf/ovmf_git.bb
@@ -55,7 +55,7 @@ DEPENDS = "nasm-native acpica-native ovmf-native util-linux-native"
55EDK_TOOLS_DIR="edk2_basetools" 55EDK_TOOLS_DIR="edk2_basetools"
56 56
57# OVMF has trouble building with the default optimization of -O2. 57# OVMF has trouble building with the default optimization of -O2.
58BUILD_OPTIMIZATION="-pipe" 58BUILD_OPTIMIZATION = ""
59 59
60# OVMF supports IA only, although it could conceivably support ARM someday. 60# OVMF supports IA only, although it could conceivably support ARM someday.
61COMPATIBLE_HOST:class-target='(i.86|x86_64).*' 61COMPATIBLE_HOST:class-target='(i.86|x86_64).*'