search for: i386pe

Displaying 9 results from an estimated 9 matches for "i386pe".

2016 Feb 29
2
lld as ld replacement on Windows (with MinGW)
...clang/libcxx based toolchain for Windows using the MinGW runtime. Since the MinGW runtime kind of expects to be built by gcc I figured the easiest way forward would be to use lld in ld mode. However, it seems that lld cannot produce windows executables while working in “ld mode”. lld -flavor gnu -m i386pe error: unsupported emulation 'i386pe’. Is support for i386pe in ld mode something that is on the road map for lld or should I just give up this route? In general I would very much appreciate if anyone has any pointers for how to build a llvm/clang/libxx toolchain for Windows using MinGW runt...
2016 Feb 29
0
lld as ld replacement on Windows (with MinGW)
...ain for Windows > using the MinGW runtime. Since the MinGW runtime kind of expects to be > built by gcc I figured the easiest way forward would be to use lld in ld > mode. However, it seems that lld cannot produce windows executables while > working in “ld mode”. > lld -flavor gnu -m i386pe > error: unsupported emulation 'i386pe’. > > Is support for i386pe in ld mode something that is on the road map for lld > or should I just give up this route? > > In general I would very much appreciate if anyone has any pointers for > how to build a llvm/clang/libxx toolc...
2018 Feb 27
0
CentOS 7 / Xen 4.6 on UEFI system?
...y to continue ... From what I've read we need to compile xen.efi and boot it natively. I found this: https://wiki.xenproject.org/wiki/Xen_EFI#Compiling_Xen_as_EFI Which sugests binutils doesn't support PE (EFI), which looks to be the case with the stock version on CentOS 7, note missing i386pe from the list of supported emulations: # ld -V GNU ld version 2.25.1-32.base.el7_4.2 Supported emulations: elf_x86_64 elf32_x86_64 elf_i386 i386linux elf_l1om elf_k1om I downloaded binutils 2.30 from http://ftp.gnu.org/gnu/binutils/ and built it with: yum -y groupinstall &qu...
2016 Apr 25
2
bug: cross-compile Clang/LLVM for ARM using Clang/LLVM
Hi James, renato, So how do I download the missing ARM libraries on Ubuntu14.04? I cannot find any available libraries. Best, Liyang -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160425/04dfc553/attachment.html>
2018 Feb 08
2
LLD: targeting cygwin
...cygwin_crt0_common.o): undefined symbol: __RUNTIME_PSEUDO_RELOC_LIST_END__ lld: warning: libcygwin.a(_cygwin_crt0_common.o): undefined symbol: __image_base__ They seem to come from the default cygwin ld linker script, pasted below: GNU ld (GNU Binutils) 2.29.1.20171006 Supported emulations: i386pep i386pe using internal linker script: ================================================== /* Default linker script, for normal executables */ /* Copyright (C) 2014-2017 Free Software Foundation, Inc. Copying and distribution of this script, with or without modification, are permitted in any...
2018 Feb 09
0
LLD: targeting cygwin
..._RUNTIME_PSEUDO_RELOC_LIST_END__ > lld: warning: libcygwin.a(_cygwin_crt0_common.o): undefined symbol: > __image_base__ > > > They seem to come from the default cygwin ld linker script, pasted below: > > GNU ld (GNU Binutils) 2.29.1.20171006 > Supported emulations: > i386pep > i386pe > using internal linker script: > ================================================== > /* Default linker script, for normal executables */ > /* Copyright (C) 2014-2017 Free Software Foundation, Inc. > Copying and distribution of this script, with or without modific...
2018 Feb 07
0
LLD: targeting cygwin
COFF lld doesn't support the linker script at the moment, and I'm sad to say that it is very unlikely to support that in the future. Linker script support is so huge that I can't imagine we really want it for COFF. GNU BFD linker supports it because the linker is built as an interpreter for the built-in linker script (and that's one of the reasons why GNU linker is by far more
2018 Feb 07
2
LLD: targeting cygwin
Hello, I have a user who is trying to get LLD to link for the cygwin target: https://github.com/zig-lang/zig/issues/751 Currently the issue they are running into is needing to define a linker script, but the COFF driver (or MinGW driver) does not have support for that. Is there documentation or advice for how to use LLD to link for cygwin? As a starting point, which driver to use? Regards,
2017 Mar 29
3
Invoking lld for PE/COFF (Windows) linking
I build llvm/clang/lld from source on Windows using mingw-64/gcc-6.3. I use clang++ both to test clang targeting gcc and clang targeting VC++. When using clang targeting VC++ I use the appropriate target triple when compiling and am trying to use lld to link the object file(s) into an exe. To do that I use the clang option "-fuse-ld=lld" when linking. According to the llvm doc on