view make-pc.sh @ 636:9cda689dcc20

Use an appropriate data copier for the platform's bit width Dispatch on sb-vm:n-word-bits, though I think sbcl itself should probably define a system-area-double-float-copy bit-bash function. This also fixes a thinko, where only half of the times data was being copied, even on 64-bit platforms. Sheesh. Fixes #32
author mas01cr
date Tue, 29 Sep 2009 16:23:42 +0000
parents 957dd4fb2599
children
line wrap: on
line source
#! /bin/bash

EXECUTABLE="$1"
LIBDIR="$2"
INCLUDEDIR="$3"
SOVERSION=$4
MINORVERSION=$5

echo "includedir=$INCLUDEDIR"
echo "libdir=$LIBDIR"
echo
echo "Name: $EXECUTABLE"
echo "Description: the $EXECUTABLE library"
echo "Version: $SOVERSION.$MINORVERSION"
echo "Requires.private: gsl gsoap++"
echo 'Cflags: -I${includedir}'
echo 'Libs: -L${libdir} -l'"$EXECUTABLE"