view buildsys/lua/bootstrap.sh @ 542:a73a5cd50c19

- fix passing aggregate-by-val on x64/sysv: subaggr classification for aggr *arrays* was wrong (was problematic when there ware exactly 2 8bytes to be classified, potentially be passed via registers)
author Tassilo Philipp
date Mon, 02 May 2022 15:32:41 +0200
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})