view tools/set-mxe-env.sh.in @ 5531:eae508c12529

Add build rule for build-octave (bug #49503). * src/build-octave.mk: Add new build rule for build-octave which can be used for cross-building binary packages that depend on Octave as a build tool. * dist-files.mk: Add new file to list. * index.html: Add new package to list. * src/of-communications.mk, src/of-image.mk, src/of-mapping.mk, src/of-optiminterp.mk, src/of-sparsersb.mk, src/of-statistics.mk, src/of-windows.mk: Add optional dependency on build-octave. * configure.ac: Add new configure switch "--disable-system-octave" that is needed to build the build-octave package. * Makefile.in: Add variable "USE_SYSTEM_OCTAVE". Exclude build-octave from the default build tools and build it only if a package explicitly depends on it. Display warning about missing native Octave version only if necessary.
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 08 Sep 2020 23:04:38 +0200
parents fc075c6c9a0b
children
line wrap: on
line source

#!/bin/bash
MXEDIR=@MXE_ROOTDIR@

if [ -z "$MXE_OCTAVE_ENV" ]; then

  if [ "@MXE_NATIVE_BUILD@" = "yes" ]; then
    MXE_PATH="$MXEDIR/usr/bin"
    MXE_INC_PATH="$MXEDIR/usr/include"
    MXE_LIB_PATH="$MXEDIR/usr/lib"
  else
    HOST=$(@abs_top_srcdir@/tools/config.guess)

    MXE_PATH="$MXEDIR/usr/$HOST/bin:$MXEDIR/usr/bin"
    MXE_INC_PATH="$MXEDIR/usr/$HOST/include"
    MXE_LIB_PATH="$MXEDIR/usr/$HOST/lib"
  fi

  if [ "@ENABLE_LIB64_DIRECTORY@" = "yes" ]; then
    MXE_LIB_PATH="$MXE_LIB_PATH:${MXE_LIB_PATH}64"
  fi

  export PATH="$MXE_PATH:$PATH"
  export CPPFLAGS="-I$MXE_INC_PATH"
  export LDFLAGS="-L$MXE_LIB_PATH"
  export LD_LIBRARY_PATH="$MXE_LIB_PATH:$LD_LIBRARY_PATH"
  export PKG_CONFIG_PATH="$MXE_LIB_PATH/pkgconfig"
  export PKG_CONFIG="$MXEDIR/usr/bin/pkg-config@EXEEXT@"

  export MXE_OCTAVE_ENV=$MXEDIR

fi