view buildsys/lua/bootstrap.sh @ 356:2f64957d6a46

- fix to dynload to build with musl libc (latter has dlinfo but not RTLD_SELF, so fallback to dl_iterate_phdr if on ELF targets)
author Tassilo Philipp
date Tue, 25 Feb 2020 16:07:45 +0100
parents 3e629dc19168
children
line wrap: on
line source

#!/bin/sh
if [ -z "${DL}" ]; then
  DL=wget
fi
case `uname -s` in
  Darwin)
    LPLAF=macosx
    ;;
  Linux)
    LPLAF=linux
    ;;
  FreeBSD)
    LPLAF=freebsd
    ;;
  SunOS)
    LPLAF=solaris
    ;;
  AIX)
    LPLAF=aix
    ;;
  DragonFly)
    LPLAF=bsd
    ;;
  *BSD)
    LPLAF=bsd
    ;;
  *)
    LPLAF=posix
    ;;
esac
DL="${DL}" make -f `dirname $0`/Makefile lua-5.1.4
(cd lua-5.1.4; make ${LPLAF})