Package Base Details: lief

Git Clone URL: https://aur.archlinux.org/lief.git (read-only, click to copy)
Keywords: elf mach-o pe
Submitter: dobo
Maintainer: Xeonacid (greyltc)
Last Packager: Xeonacid
Votes: 5
Popularity: 0.095696
First Submitted: 2018-11-14 22:00 (UTC)
Last Updated: 2024-04-11 05:18 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

petronny commented on 2022-11-01 07:15 (UTC)

I confirm that the error found by Salamandar also shows in a clean chroot.

Full build log: https://github.com/arch4edu/cactus/actions/runs/3367117244/jobs/5584302476

Salamandar commented on 2022-10-14 15:13 (UTC)

FYI, this package fails to build:

.cache/yay/lief/src/LIEF-0.12.1/src/ELF/Binary.cpp:227:5:   requis depuis ici
/usr/include/fmt/core.h:1757:7: erreur: l'assertion statique a échoué: Cannot format an argument. To make type T formattable provide a formatter<T> specialization: https://fmt.dev/latest/api.html#udt

But lief-git builds properly.

greyltc commented on 2022-05-09 00:20 (UTC)

The below patch doesn't apply anymore. Here's one that does:

diff --git a/cmake/LIEFCompilerFlags.cmake b/cmake/LIEFCompilerFlags.cmake
index 28128496..47004ca5 100644
--- a/cmake/LIEFCompilerFlags.cmake
+++ b/cmake/LIEFCompilerFlags.cmake
@@ -64,8 +64,8 @@ if (NOT MSVC)
   ADD_FLAG_IF_SUPPORTED("-Werror=return-type" ERR_RET_TYPE)


-  ADD_FLAG_IF_SUPPORTED("-fdiagnostics-color=always" DIAGNOSTICS_COLOR)
-  ADD_FLAG_IF_SUPPORTED("-fcolor-diagnostics"        COLOR_DIAGNOSTICS)
+  #ADD_FLAG_IF_SUPPORTED("-fdiagnostics-color=always" DIAGNOSTICS_COLOR)
+  #ADD_FLAG_IF_SUPPORTED("-fcolor-diagnostics"        COLOR_DIAGNOSTICS)
 endif()

 #ADD_FLAG_IF_SUPPORTED("-Wduplicated-cond"         HAS_DUPLICATED_COND)

dack commented on 2022-03-16 00:51 (UTC)

I'm seeing build failures. It seems that it's passing "-fcolor-diagnostics" to GCC, but only CLANG supports that option. The simple fix was to remove those flags (I assume it only affects build logs). Here's a patch:

diff --git a/cmake/LIEFCompilerFlags.cmake b/cmake/LIEFCompilerFlags.cmake
index 88fbf5f0..a4d35ac7 100644
--- a/cmake/LIEFCompilerFlags.cmake
+++ b/cmake/LIEFCompilerFlags.cmake
@@ -64,9 +64,6 @@ if (NOT MSVC)
   ADD_FLAG_IF_SUPPORTED("-fvisibility=hidden"       VISIBILITY)
   ADD_FLAG_IF_SUPPORTED("-Wno-expansion-to-defined" NO_EXPANSION_TO_DEFINED)

-  ADD_FLAG_IF_SUPPORTED("-fdiagnostics-color=always" DIAGNOSTICS_COLOR)
-  ADD_FLAG_IF_SUPPORTED("-fcolor-diagnostics"        COLOR_DIAGNOSTICS)
-

 endif()
 #ADD_FLAG_IF_SUPPORTED("-Wduplicated-cond"         HAS_DUPLICATED_COND)

amstan commented on 2022-02-08 05:59 (UTC)

Something is strange with this package, it's only building on one core instead all 8 like my makepkg.cfg says. I've been here for an hour now.

mr_thack commented on 2021-12-22 17:52 (UTC)

2 Questions:
1. What does the *-git mean in AUR packages? I'm new here so that's why I'm asking.
2. Could you please update line 4 to 0.11.5? That's the newest release of LIEF.
Thanks in advance!

dobo commented on 2020-11-18 22:02 (UTC)

Sorry for the late update. Thanks for the suggestions @yuyichao. Shared library should be built properly now.

I've looked at the headers code and json.hpp library is included in "LIEF/json.hpp", so I've left it unchanged. You're right that it should be reported upstream.

yuyichao commented on 2020-05-11 04:21 (UTC) (edited on 2020-05-11 05:34 (UTC) by yuyichao)

This still doesn't seem to provide libLIEF.so, rather the static library libLIEF.a. -DBUILD_SHARED_LIBS=1 is needed for the shared library. (shared library build also needs https://github.com/lief-project/LIEF/pull/365)

The compiled package also contains a extremely generic /usr/lib/json.hpp and it should probably be fixed upstream...

dobo commented on 2020-04-25 23:29 (UTC)

Thanks for reporting, should be fixed in pkgrel 2.