view R/rdyncall/tools/bootstrap @ 63:9b6cdffd30dd

- further fixes of inccorect overflow errors for int (and long on LLP64 systems) * prev commit had bugs * added overflow tests for also int, long, long long (for both, lp64 and llp64) - while at it, fixing a reference leak when not using python with utf8 caching
author Tassilo Philipp
date Sun, 19 May 2024 15:33:18 +0200
parents 0cfcc391201f
children
line wrap: on
line source

download_zip()
{
  VERSION=0.6
  NAME=dyncall-${VERSION}
  ZIP=${NAME}.zip
  wget http://dyncall.org/r${VERSION}/${ZIP}
  unzip ${ZIP}
  mv ${NAME} src/dyncall
  rm ${ZIP}
}

checkout_src()
{
  svn co https://dyncall.org/svn/dyncall/trunk/dyncall src/dyncall
  svnversion src/dyncall >src/dyncall/SVNVERSION
}

configure_dyncall()
{
cat <<EOF >src/dyncall/ConfigVars
#auto-generated by dyncall/configure
CONFIG_PACKAGE=dyncall
CONFIG_ARCH=universal
CONFIG_TOOL=gcc
CONFIG_ASM=gcc
CONFIG_CONFIG=release
CONFIG_BUILDPREFIX=.
EOF
}

# choose between 'checkout_src' or 'download_zip'

checkout_src
# download_zip
# configure_dyncall