|
Re: OvmfPkgX64 doesn't build with XCODE5 (Apple clang 12.0.5) - symbol `_AsmRelocateApMailBoxLoopStart' not defined
Hi Rebecca,
That does indeed look like a bug for toolchains that prepend the underscore.
Our GSoC student already caught that bug and he's going to submit a patch as soon as possible to fix it.
Mind
Hi Rebecca,
That does indeed look like a bug for toolchains that prepend the underscore.
Our GSoC student already caught that bug and he's going to submit a patch as soon as possible to fix it.
Mind
|
By
Pedro Falcato
·
#90015
·
|
|
Re: including redfish libs results in multiple definitions of symbols
Correction:
if a .LIB is passed to the linker instead, the linker searches the .LIB for a particular
symbol (e.g. function, data). The specific .OBJ module that holds that particular symbol,
Correction:
if a .LIB is passed to the linker instead, the linker searches the .LIB for a particular
symbol (e.g. function, data). The specific .OBJ module that holds that particular symbol,
|
By
Kilian Kegel
·
#90014
·
|
|
Re: including redfish libs results in multiple definitions of symbols
Hi xp,
your build failure is
the result of a “link-all” mechanism
or
2. the result of a library construction flaw that is commonly used in EDK2.
or both
Let me explain the
Hi xp,
your build failure is
the result of a “link-all” mechanism
or
2. the result of a library construction flaw that is commonly used in EDK2.
or both
Let me explain the
|
By
Kilian Kegel
·
#90013
·
|
|
Re: OvmfPkgX64 doesn't build with CLANG38 (clang 14.0.3) NOOPT - undefined reference to `memcpy'
Note: We should think about providing some basic libc functions in base EDK2 as some are required by the clang/GCC compilers (see https://gcc.gnu.org/onlinedocs/gcc/Standards.html, grep for memcpy or
Note: We should think about providing some basic libc functions in base EDK2 as some are required by the clang/GCC compilers (see https://gcc.gnu.org/onlinedocs/gcc/Standards.html, grep for memcpy or
|
By
Pedro Falcato
·
#90012
·
|
|
Re: OvmfPkgX64 doesn't build with CLANG38 (clang 14.0.3) NOOPT - undefined reference to `memcpy'
Ah, thanks! I've just sent out another email this time about building with the XCODE5 toolchain and _AsmRelocateApMailBoxLoopStart not being defined.
--
Rebecca Cran
Ah, thanks! I've just sent out another email this time about building with the XCODE5 toolchain and _AsmRelocateApMailBoxLoopStart not being defined.
--
Rebecca Cran
|
By
Rebecca Cran <quic_rcran@...>
·
#90011
·
|
|
OvmfPkgX64 doesn't build with XCODE5 (Apple clang 12.0.5) - symbol `_AsmRelocateApMailBoxLoopStart' not defined
I noticed OvmfPkg/OvmfPkgX64.dsc doesn't build with `-t XCODE5` (with Apple clang 12.0.5)) with the latest edk2 master (07c0c2eb0a5970db614ebce1060fc79d6904bdfd).
GenSec -s EFI_SECTION_VERSION -n
I noticed OvmfPkg/OvmfPkgX64.dsc doesn't build with `-t XCODE5` (with Apple clang 12.0.5)) with the latest edk2 master (07c0c2eb0a5970db614ebce1060fc79d6904bdfd).
GenSec -s EFI_SECTION_VERSION -n
|
By
Rebecca Cran <quic_rcran@...>
·
#90010
·
|
|
Re: OvmfPkgX64 doesn't build with CLANG38 (clang 14.0.3) NOOPT - undefined reference to `memcpy'
Indeed. We don't support struct assignment in Tianocore code, exactly
for this reason.
Indeed. We don't support struct assignment in Tianocore code, exactly
for this reason.
|
By
Ard Biesheuvel
·
#90009
·
|
|
Re: OvmfPkgX64 doesn't build with CLANG38 (clang 14.0.3) NOOPT - undefined reference to `memcpy'
I think I found the smoking gun: https://github.com/tianocore/edk2/blob/916f90baa547b3ebef8fa87c530e2f0c8e35e1e3/OvmfPkg/VirtioGpuDxe/Gop.c#L512
A very clear issue I'm seeing (in tools_def) is that
I think I found the smoking gun: https://github.com/tianocore/edk2/blob/916f90baa547b3ebef8fa87c530e2f0c8e35e1e3/OvmfPkg/VirtioGpuDxe/Gop.c#L512
A very clear issue I'm seeing (in tools_def) is that
|
By
Pedro Falcato
·
#90008
·
|
|
including redfish libs results in multiple definitions of symbols
Hello
I'm working on a small UEFI shell app.
I was hoping to make use of the JsonLib found in the Redfish Package.
When I include the Redfish JsonLib and it's
Hello
I'm working on a small UEFI shell app.
I was hoping to make use of the JsonLib found in the Redfish Package.
When I include the Redfish JsonLib and it's
|
By
M.T.
·
#90007
·
|
|
Re: OvmfPkgX64 doesn't build with CLANG38 (clang 14.0.3) NOOPT - undefined reference to `memcpy'
Can you dump the object file to see where the memcpy() call is emitted?
Can you dump the object file to see where the memcpy() call is emitted?
|
By
Ard Biesheuvel
·
#90006
·
|
|
OvmfPkgX64 doesn't build with CLANG38 (clang 14.0.3) NOOPT - undefined reference to `memcpy'
I noticed OvmfPkg/OvmfPkgX64.dsc doesn't build with `-t CLANG38 -b NOOPT` (with clang version 14.0.2) with the latest edk2 master (07c0c2eb0a5970db614ebce1060fc79d6904bdfd):
make: Nothing to be done
I noticed OvmfPkg/OvmfPkgX64.dsc doesn't build with `-t CLANG38 -b NOOPT` (with clang version 14.0.2) with the latest edk2 master (07c0c2eb0a5970db614ebce1060fc79d6904bdfd):
make: Nothing to be done
|
By
Rebecca Cran <quic_rcran@...>
·
#90005
·
|
|
Re: [PATCH] OvmfPkg: TdxDxe: Fix AsmRelocateApMailBoxLoop
Merged https://github.com/tianocore/edk2/pull/2915
Merged https://github.com/tianocore/edk2/pull/2915
|
By
Yao, Jiewen
·
#90004
·
|
|
Re: [PATCH 1/1] OvmfPkg: fix PcdFSBClock
Merged https://github.com/tianocore/edk2/pull/2916
Merged https://github.com/tianocore/edk2/pull/2916
|
By
Yao, Jiewen
·
#90003
·
|
|
Re: How to create a account on bugzilla.tianocore.org ?
Thanks a lot!
Joey Lee
By
joeyli
·
#90002
·
|
|
[PATCH v2] IntelSiliconPkg/VTd: Add PCD for VTd Abort DMA Mode Support
PcdVTdSupportAbortDmaMode is used to enable/disable using VTd Abort DMA Mod=
e.
Signed-off-by: Sheng Wei <w.sheng@...>=0D
Reviewed-by: Robert Kowalewski <robert.kowalewski@...>
Cc: Ray Ni
PcdVTdSupportAbortDmaMode is used to enable/disable using VTd Abort DMA Mod=
e.
Signed-off-by: Sheng Wei <w.sheng@...>=0D
Reviewed-by: Robert Kowalewski <robert.kowalewski@...>
Cc: Ray Ni
|
By
Sheng Wei
·
#90001
·
|
|
Re: [PATCH 1/1] OvmfPkg: fix PcdFSBClock
Hi,
I know ;)
Did the same a while back, looking for a way to figure at runtime
what the frequency is (simliar to xen), only to find that it is not
needed on kvm because frequency is fixed.
Never
Hi,
I know ;)
Did the same a while back, looking for a way to figure at runtime
what the frequency is (simliar to xen), only to find that it is not
needed on kvm because frequency is fixed.
Never
|
By
Gerd Hoffmann
·
#90000
·
|
|
Re: [edk2-staging][PATCH v2 3/3] edk2-staging/RedfishClientPkg: Add support of array type attribute
Reviewed-by: Abner Chang <abner.chang@...>
Reviewed-by: Abner Chang <abner.chang@...>
|
By
Abner Chang
·
#89999
·
|
|
Re: [edk2-staging][PATCH v2 2/3] edk2-staging/RedfishClientPkg: Introduce Redfish version library
Reviewed-by: Abner Chang <abner.chang@...>
Reviewed-by: Abner Chang <abner.chang@...>
|
By
Abner Chang
·
#89998
·
|
|
Re: [edk2-staging][PATCH v2 1/3] edk2-staging/RedfishClientPkg: Introduce Redfish event library
Reviewed-by: Abner Chang <abner.chang@...>
Reviewed-by: Abner Chang <abner.chang@...>
|
By
Abner Chang
·
#89997
·
|
|
[edk2-staging][PATCH v2 3/3] edk2-staging/RedfishClientPkg: Add support of array type attribute
Add Redfish array type attribute support. Add function to handle
HII ordered list question in order to convert value array in
HII ordered list to Redfish array attribute.
Signed-off-by: Nickle Wang
Add Redfish array type attribute support. Add function to handle
HII ordered list question in order to convert value array in
HII ordered list to Redfish array attribute.
Signed-off-by: Nickle Wang
|
By
Nickle Wang
·
#89996
·
|