mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-16 08:06:11 +02:00
16 lines
269 B
Bash
16 lines
269 B
Bash
#! /bin/sh
|
|
|
|
FPCDIR=/usr/lib/fpc/0.99.12
|
|
|
|
# create link
|
|
ln -sf $FPCDIR/ppc386 /usr/bin/ppc386
|
|
|
|
# create /etc/ppc386.cfg
|
|
GCCSPEC=`(gcc -v 2>&1)| head -n 1| awk '{ print $4 } '`
|
|
GCCDIR=`dirname $GCCSPEC`
|
|
|
|
$FPCDIR/samplecfg $FPCDIR $GCCDIR
|
|
|
|
# update ld.so cache
|
|
# ldconfig
|