Skip to content

Commit

Permalink
Update 51-gnustep-back.sh
Browse files Browse the repository at this point in the history
Add cairo backend
  • Loading branch information
gcasa authored Feb 18, 2024
1 parent e9ab286 commit f07b95f
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions phases/51-gnustep-back.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,37 @@ echo "### Loading GNUstep environment"
. "$UNIX_INSTALL_PREFIX/share/GNUstep/Makefiles/GNUstep.sh"

echo
echo "### Running configure"
echo "### Running configure -- headless backend"

./configure \
--enable-graphics=headless \
--enable-server=headless \
--with-name=headless \
--without-freetype \
--host=$TARGET \
CFLAGS="-Wno-int-conversion"

echo
echo "### Building"
echo "### Building -- headless backend"
make -j`nproc`

echo
echo "### Installing"
make install
echo "### Installing -- headless backend"
make install
make distclean

echo
echo "### Running configure -- cairo backend"

./configure \
--with-name=cairo \
--host=$TARGET \
CFLAGS="-Wno-int-conversion"

echo
echo "### Building -- cairo backend"
make -j`nproc`

echo
echo "### Installing -- cairo backend"
make install

0 comments on commit f07b95f

Please sign in to comment.