public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Rebecca Cran" <rebecca@bsdio.com>
To: Gerd Hoffmann <kraxel@redhat.com>, devel@edk2.groups.io
Cc: "Sunil V L" <sunilvl@ventanamicro.com>,
	"Zhiguang Liu" <zhiguang.liu@intel.com>,
	"Chao Li" <lichao@loongson.cn>,
	"Michael D Kinney" <michael.d.kinney@intel.com>,
	"Pawel Polawski" <ppolawsk@redhat.com>,
	"Baoqi Zhang" <zhangbaoqi@loongson.cn>,
	"Leif Lindholm" <quic_llindhol@quicinc.com>,
	"Dongyan Qian" <qiandongyan@loongson.cn>,
	"Oliver Steffen" <osteffen@redhat.com>,
	"Bob Feng" <bob.c.feng@intel.com>,
	"Liming Gao" <gaoliming@byosoft.com.cn>,
	"Ard Biesheuvel" <ardb+tianocore@kernel.org>,
	"Marvin Häuser" <mhaeuser@posteo.de>,
	"Daniel Schaefer" <git@danielschaefer.me>,
	"Yuwei Chen" <yuwei.chen@intel.com>
Subject: Re: [PATCH v3 00/10] BaseTools: remove duplicate includes.
Date: Thu, 13 Apr 2023 06:51:55 -0600	[thread overview]
Message-ID: <25f50418-d3b7-ad92-5d41-688063c2e8b0@bsdio.com> (raw)
In-Reply-To: <20230413085313.273483-1-kraxel@redhat.com>

Building with clang 14 on Ubuntu 22.04 fails.

"make CC=clang CXX=clang++ -C BaseTools" causes the following errors:


...

clang++ -o ../bin/VfrCompile  AParser.o DLexerBase.o ATokenBuffer.o 
EfiVfrParser.o VfrLexer.o VfrSyntax.o VfrFormPkg.o VfrError.o 
VfrUtilityLib.o VfrCompiler.o -L../libs -lCommon
/usr/bin/ld: VfrSyntax.o: in function 
`EfiVfrParser::vfrExtensionData(unsigned char*, unsigned int, char*, 
unsigned int, unsigned char, unsigned int)':
VfrSyntax.cpp:(.text+0x10210): undefined reference to `strlen'
/usr/bin/ld: VfrSyntax.cpp:(.text+0x1023b): undefined reference to `strcpy'
/usr/bin/ld: VfrSyntax.cpp:(.text+0x1024b): undefined reference to `strlen'
/usr/bin/ld: VfrSyntax.cpp:(.text+0x1037d): undefined reference to `strlen'
/usr/bin/ld: VfrSyntax.cpp:(.text+0x103a8): undefined reference to `strcpy'
...

/usr/bin/ld: ParseInf.c:(.text+0x44d): undefined reference to `strlen'
/usr/bin/ld: ../libs/libCommon.a(ParseInf.o): in function 
`AsciiStringToUint64':
ParseInf.c:(.text+0x651): undefined reference to `strlen'
/usr/bin/ld: ../bin/VfrCompile: hidden symbol `strlen' isn't defined
/usr/bin/ld: final link failed: bad value
clang: error: linker command failed with exit code 1 (use -v to see 
invocation)
make[2]: *** [GNUmakefile:45: ../bin/VfrCompile] Error 1
make[2]: Leaving directory 
'/home/bcran/src/uefi/edk2/BaseTools/Source/C/VfrCompile'
make[1]: *** [GNUmakefile:79: VfrCompile] Error 2
make[1]: Leaving directory '/home/bcran/src/uefi/edk2/BaseTools/Source/C'
make: *** [GNUmakefile:19: Source/C] Error 2
make: Leaving directory '/home/bcran/src/uefi/edk2/BaseTools'


-- 
Rebecca Cran


On 4/13/23 02:53, Gerd Hoffmann wrote:
> There is alot of code duplication between BaseTools and MdePkg (and also
> MdeModulePkg).  This patch series starts reducing this by removing some
> header files.  BaseTools are switched over to use the include files in
> MdePkg instead.  It also cleans up some (apparently) obsolete code and
> adapts BaseTools code in a few places to work with the MdePkg version of
> the include files.
>
> v3 changes:
>   - fix build failure on ubuntu 22.04
> v2 changes:
>   - rebase to latest master, resolve conflicts.
>   - pick up reviews and acks.
>
> take care,
>    Gerd
>
> Gerd Hoffmann (10):
>    BaseTools: add BASETOOLS define
>    MdePkg: don't set visibility to hidden for BaseTools
>    BaseTools: remove WinNtInclude.h
>    BaseTools: remove duplicate includes: <arch>/ProcessorBind.h
>    BaseTools: remove duplicate includes: IndustryStandard/Acpi*.h
>    MdePkg/PeImage.h: add bits from BaseTools version
>    BaseTools: drop IMAGE_FILE_MACHINE_ARM hacks
>    BaseTools: switch from EFI_IMAGE_MACHINE_* to IMAGE_FILE_MACHINE_*
>    BaseTools: remove duplicate includes: IndustryStandard/PeImage.h
>    BaseTools: remove duplicate includes: IndustryStandard/*.h
>
>   BaseTools/Source/C/Common/WinNtInclude.h      |  66 --
>   BaseTools/Source/C/EfiRom/EfiRom.h            |  14 +-
>   .../Source/C/Include/AArch64/ProcessorBind.h  | 148 ----
>   .../Source/C/Include/Arm/ProcessorBind.h      | 147 ----
>   .../Source/C/Include/Ia32/ProcessorBind.h     | 155 ----
>   .../Source/C/Include/IndustryStandard/Acpi.h  | 117 ---
>   .../C/Include/IndustryStandard/Acpi1_0.h      | 285 -------
>   .../C/Include/IndustryStandard/Acpi2_0.h      | 520 ------------
>   .../C/Include/IndustryStandard/Acpi3_0.h      | 668 ---------------
>   .../C/Include/IndustryStandard/Bluetooth.h    |  56 --
>   .../C/Include/IndustryStandard/EfiPci.h       |  51 --
>   ...emoryMappedConfigurationSpaceAccessTable.h |  39 -
>   .../C/Include/IndustryStandard/PeImage.h      | 789 ------------------
>   .../Source/C/Include/IndustryStandard/pci22.h | 536 ------------
>   .../Source/C/Include/IndustryStandard/pci23.h |  18 -
>   .../Source/C/Include/IndustryStandard/pci30.h |  38 -
>   .../C/Include/LoongArch64/ProcessorBind.h     |  80 --
>   .../Source/C/Include/Protocol/DevicePath.h    |   2 +-
>   .../Source/C/Include/RiscV64/ProcessorBind.h  |  85 --
>   .../Source/C/Include/X64/ProcessorBind.h      | 183 ----
>   MdePkg/Include/IndustryStandard/PeImage.h     |  31 +
>   MdePkg/Include/X64/ProcessorBind.h            |   2 +-
>   BaseTools/Source/C/Common/BasePeCoff.c        |  51 +-
>   BaseTools/Source/C/Common/Decompress.c        |   1 +
>   BaseTools/Source/C/GenFv/GenFvInternalLib.c   |  43 +-
>   BaseTools/Source/C/GenFw/Elf32Convert.c       |   8 +-
>   BaseTools/Source/C/GenFw/Elf64Convert.c       |  12 +-
>   BaseTools/Source/C/GenFw/ElfConvert.c         |   2 -
>   BaseTools/Source/C/GenFw/GenFw.c              |  18 +-
>   BaseTools/Source/C/Makefiles/header.makefile  |  18 +-
>   BaseTools/Source/C/Makefiles/ms.common        |  17 +-
>   31 files changed, 118 insertions(+), 4082 deletions(-)
>   delete mode 100644 BaseTools/Source/C/Common/WinNtInclude.h
>   delete mode 100644 BaseTools/Source/C/Include/AArch64/ProcessorBind.h
>   delete mode 100644 BaseTools/Source/C/Include/Arm/ProcessorBind.h
>   delete mode 100644 BaseTools/Source/C/Include/Ia32/ProcessorBind.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/Acpi.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/Acpi1_0.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/Acpi2_0.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/Acpi3_0.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/Bluetooth.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/EfiPci.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/MemoryMappedConfigurationSpaceAccessTable.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/PeImage.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/pci22.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/pci23.h
>   delete mode 100644 BaseTools/Source/C/Include/IndustryStandard/pci30.h
>   delete mode 100644 BaseTools/Source/C/Include/LoongArch64/ProcessorBind.h
>   delete mode 100644 BaseTools/Source/C/Include/RiscV64/ProcessorBind.h
>   delete mode 100644 BaseTools/Source/C/Include/X64/ProcessorBind.h
>

      parent reply	other threads:[~2023-04-13 12:51 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-13  8:53 [PATCH v3 00/10] BaseTools: remove duplicate includes Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 01/10] BaseTools: add BASETOOLS define Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 02/10] MdePkg: don't set visibility to hidden for BaseTools Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 03/10] BaseTools: remove WinNtInclude.h Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 04/10] BaseTools: remove duplicate includes: <arch>/ProcessorBind.h Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 05/10] BaseTools: remove duplicate includes: IndustryStandard/Acpi*.h Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 06/10] MdePkg/PeImage.h: add bits from BaseTools version Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 07/10] BaseTools: drop IMAGE_FILE_MACHINE_ARM hacks Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 08/10] BaseTools: switch from EFI_IMAGE_MACHINE_* to IMAGE_FILE_MACHINE_* Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 09/10] BaseTools: remove duplicate includes: IndustryStandard/PeImage.h Gerd Hoffmann
2023-04-13  8:53 ` [PATCH v3 10/10] BaseTools: remove duplicate includes: IndustryStandard/*.h Gerd Hoffmann
2023-04-13 12:51 ` Rebecca Cran [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=25f50418-d3b7-ad92-5d41-688063c2e8b0@bsdio.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox