svn commit: r472291 - head/net-p2p/monero-cli

Vasil Dimov vd at FreeBSD.org
Wed Jun 13 06:42:53 UTC 2018


Author: vd
Date: Wed Jun 13 06:42:52 2018
New Revision: 472291
URL: https://svnweb.freebsd.org/changeset/ports/472291

Log:
  net-p2p/monero-cli: Fix compilation on i386
  
  /usr/src/contrib/llvm/tools/lld/ELF/Driver.cpp:126 contains
  "elf_i386" as a recognized name, but for some reason monero fails
  to link on the i386 build cluster with an error:
  
    /usr/bin/ld: unrecognised emulation mode: elf_i386
    Supported emulations: elf_i386_fbsd
  
  Thus, change "elf_i386" to "elf_i386_fbsd".

Modified:
  head/net-p2p/monero-cli/Makefile

Modified: head/net-p2p/monero-cli/Makefile
==============================================================================
--- head/net-p2p/monero-cli/Makefile	Wed Jun 13 06:23:29 2018	(r472290)
+++ head/net-p2p/monero-cli/Makefile	Wed Jun 13 06:42:52 2018	(r472291)
@@ -62,7 +62,7 @@ LD_EMULATION=	aarch64elf
 .elif ${ARCH} == amd64
 LD_EMULATION=	elf_amd64
 .elif ${ARCH} == i386
-LD_EMULATION=	elf_i386
+LD_EMULATION=	elf_i386_fbsd
 .elif ${ARCH} == powerpc
 LD_EMULATION=	elf32ppc
 .elif ${ARCH} == powerpc64


More information about the svn-ports-all mailing list