• Show log

    Commit

  • Hash : 873639eb
    Author : Fabrice Fontaine
    Date : 2022-06-07T19:27:13

    Fix ELF support for big endian SH Fix the following build failure with big endian SH (e.g. sh4aeb): ,--- In file included from nlist.c:44: nlist.c: In function '__elf_is_okay__': local-elf.h:223:25: error: 'ELFDATA2LMSB' undeclared (first use in this function); did you mean 'ELFDATA2LSB'? 223 | #define ELF_TARG_DATA ELFDATA2LMSB | ^~~~~~~~~~~~ `--- Fixes: http://autobuild.buildroot.org/results/2980fb79c208454195d77383f1ece9afbd7f981b Closes: !19 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Guillem Jover <guillem@hadrons.org>

  • README

  • libbsd - Utility functions from BSD systems
    
    This library provides useful functions commonly found on BSD systems,
    and lacking on others like GNU systems, thus making it easier to port
    projects with strong BSD origins, without needing to embed the same
    code over and over again on each project.
    
    A BSD compatible message-digest library is required, on systems where
    this is not provided by its libc or libmd libraries, the canonical
    implementation to use is <https://www.hadrons.org/software/libmd/>.
    
    Releases
    --------
    
      <https://libbsd.freedesktop.org/releases/>
    
    
    Mailing List
    ------------
    
    The subscription interface and web archives can be found at:
    
      <https://lists.freedesktop.org/mailman/listinfo/libbsd>
    
    The mail address is:
    
      libbsd@lists.freedesktop.org
    
    
    Source Repository
    -----------------
    
    The master repository can be browsed at:
    
      <https://cgit.freedesktop.org/libbsd>
    
    and cloned from:
    
      <https://anongit.freedesktop.org/git/libbsd>
    
    Building from git source
    ------------------------
    
    To prepare the libbsd source tree from git before starting the build process
    some required software needs to be installed:
    
      GNU autoconf >= 2.67
      GNU automake >= 1.9
      GNU libtool >= 2.0
    
    After installing the needed software, and running the following command on
    the git tree:
    
      $ ./autogen
    
    the source should be roughly equivalent to the distributed tar source.
    
    Building from tar source
    ------------------------
    
    The minimum software required to configure and build dpkg from a tarball is:
    
      C89 compiler
      make
    
    The following software might be required depending on the system:
    
      libmd (whenever the libc does not provide the needed digest functions)
    
    The build process is done by running the usual «./configure; make». To
    see all available configuration options please run «./configure --help».