繁体   English   中英

如何在 Linux 上安装 gprbuild - Centos7

[英]How to install gprbuild on Linux - Centos7

我最近在我的 Linux 机器(Centos7)上下载了 GNAT 社区。

在 /home/parallels/opt/GNAT/2019 中有一个文件夹 gprbuild,我的理解是要安装它,我需要执行位于 gprbuild 中的 bootstrap.sh 脚本:/home/parallels/opt/GNAT/2019/ gprbuild/bootstrap.sh

我尝试像这样执行 bootstrap.sh 脚本......

[parallels@localhost gprbuild]$./bootstrap.sh

然后我收到此错误消息...

./bootstrap.sh: line 87: gnatmake: command not found

这是 bootstrap.sh 脚本...

# bootstrap.sh - a simple bootstrap for building gprbuild with xmlada

progname=bootstrap

prefix=/usr/local
bindir=/bin
datarootdir=/share
libexecdir=/libexec

srcdir=$PWD
xmlada_src=../xmlada

CC=${CC:-cc}
GNATMAKE=${GNATMAKE:-gnatmake}
CFLAGS=${CFLAGS:-$CFLAGS}
GNATMAKEFLAGS=${GNATMAKEFLAGS:--j0}

usage() {
    cat >&2 <<EOF
usage: $progname [options]

Options [defaults in brackets]:
  --prefix=DIR       installation prefix [$prefix]
  --bindir=DIR       user executables [PREFIX/bin]
  --libexecdir=DIR   program executables [PREFIX/libexec]
  --datarootdir=DIR  read-only arch.-independent data root [PREFIX/share]

  --srcdir=DIR       source code path [$PWD]

  --with-xmlada=DIR  xmlada source path [$xmlada_src]

  --build            build only but do not install
  --install          install only, skip build steps

Environment variables:
  CC                 specify C compiler [$CC]
  CFLAGS             set C and Ada compilation flags [$CFLAGS]
  DESTDIR            optional for staged installs
  GNATMAKE           specify gnatmake Ada builder [$GNATMAKE]
  GNATMAKEFLAGS      additional Ada builder flags [$GNATMAKEFLAGS]
EOF
exit 0
}

error() {
    printf -- "%s: $1" "$progname" "${@:2}" >&2
    exit 1
}

while :; do
    case $1 in
        --prefix=?*)      prefix=${1#*=} ;;
        --bindir=?*)      bindir=${1#*=} ;;
        --libexecdir=?*)  libexecdir=${1#*=} ;;
        --datarootdir=?*) datarootdir=${1#*=} ;;

        --srcdir=?*)      srcdir=${1#*=} ;;
        --with-xmlada=?*) xmlada_src=${1#*=} ;;
    --build)          MODE="build";;
    --install)        MODE="install";;

        -h|-\?|--help)    usage ;;

        *=*)              error '%s: Requires a value, try --help\n' "$1" ;;
        -?*)              error '%s: Unknown option, try --help\n' "$1" ;;
        *)                break # End of arguments.
    esac
    shift
done

set -e

inc_flags="-I$srcdir/src -I$srcdir/gpr/src -I$xmlada_src/sax -I$xmlada_src/dom \
-I$xmlada_src/schema -I$xmlada_src/unicode -I$xmlada_src/input_sources"

# Programs to build and install
bin_progs="gprbuild gprconfig gprclean gprinstall gprname gprls"
lib_progs="gprlib gprbind"

# Build
if [ "x"${MODE} == "x" ] || [ ${MODE} == "build" ];
then
    command $CC -c $CFLAGS "$srcdir"/gpr/src/gpr_imports.c

    for bin in $bin_progs; do
        command $GNATMAKE $inc_flags "$bin"-main -o "$bin" $CFLAGS $GNATMAKEFLAGS -largs gpr_imports.o
    done

    for lib in $lib_progs; do
        command $GNATMAKE $inc_flags "$lib" $CFLAGS $GNATMAKEFLAGS -largs gpr_imports.o
    done
fi;

# Install

if [ "x"${MODE} == "x" ]  || [ ${MODE} == "install" ];
then
    mkdir -p "$DESTDIR$prefix$bindir"
    mkdir -p "$DESTDIR$prefix$libexecdir"/gprbuild
    mkdir -p "$DESTDIR$prefix$datarootdir"/gprconfig
    mkdir -p "$DESTDIR$prefix$datarootdir"/gpr

    install -m0755 $bin_progs -t "$DESTDIR$prefix$bindir"
    install -m0755 $lib_progs -t "$DESTDIR$prefix$libexecdir"/gprbuild
    install -m0644 "$srcdir"/share/gprconfig/*.xml -t "$DESTDIR$prefix$datarootdir"/gprconfig
    install -m0644 "$srcdir"/share/gprconfig/*.ent -t "$DESTDIR$prefix$datarootdir"/gprconfig
    install -m0644 "$srcdir"/share/_default.gpr "$DESTDIR$prefix$datarootdir"/gpr/_default.gpr
fi

有人告诉我,我需要在安装 gprbuild 之前安装 xmlada,然后我在其他地方读到我需要安装 gprbuild 才能安装 xmlada!

我在尝试安装 xmlada 时遇到了类似的问题,xmlada 文件夹中的 shell 脚本称为 install-sh,当我尝试安装它时,我被告知没有指定输入文件...

[parallels@localhost xmlada]$ ./install-sh
./install-sh: no input file specified.

我知道这确实是两个问题,但我觉得我必须这样解释,因为我不确定首先需要安装哪个库,以及如何实际安装它们。

任何帮助将不胜感激。 我希望你们周末过得愉快..:)

谢谢,劳埃德

只需安装 gcc-ada,或在 package 管理器中搜索 gcc-ada(可能会更改其名称),此 package 中有 gnat* 命令

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM