Package Details: lief 0.12.3-1

Git Clone URL: https://aur.archlinux.org/lief.git (read-only, click to copy)
Package Base: lief
Description: Library to instrument executable formats
Upstream URL: https://github.com/lief-project/lief
Licenses: Apache
Provides: libLIEF.so
Submitter: dobo
Maintainer: dobo
Last Packager: lmartinez-mirror
Votes: 3
Popularity: 0.000001
First Submitted: 2018-11-14 22:00 (UTC)
Last Updated: 2022-12-20 21:42 (UTC)

Dependencies (5)

Required by (3)

Sources (1)

Latest Comments

1 2 Next › Last »

meadow commented on 2023-08-02 12:21 (UTC)

Updating the version to 0.13.2 fixed the build for me.

lsigma commented on 2022-11-07 23:14 (UTC)

Modifying the PKGBUILD to not use the external SPDLIB fixes the build errors for me:

diff --git a/PKGBUILD b/PKGBUILD
index 711bcb3..3b9e8c3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -24,7 +24,7 @@ build() {
                -DLIEF_PYTHON_API=OFF \
                -DLIEF_OPT_EXTERNAL_LEAF=ON \
                -DLIEF_OPT_NLOHMANN_JSON_EXTERNAL=ON \
-               -DLIEF_EXTERNAL_SPDLOG=ON \
+               -DLIEF_EXTERNAL_SPDLOG=OFF \
                -DLIEF_OPT_UTFCPP_EXTERNAL=ON \
                -Wno-dev
   make -C build

But I wasn't able to verify that the package still works as the package I was trying to get running was also broken.

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.