mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-28 04:03:39 +08:00
29707e66e6
darcs-hash:20060202153401-ac50b-502136b1a0e1c5117a34cc1e105a718d6ea8884b.gz
66 lines
1.9 KiB
Plaintext
66 lines
1.9 KiB
Plaintext
|
|
Known issues
|
|
============
|
|
|
|
Fish currently requires a semi-modern GCC version to
|
|
compile. Specifically, GCC 2.95.* won't compile fish. Fish has not
|
|
been coded with an C99- or GNU-specific features in mind, so it is
|
|
hoped that it should be possible to make fish work with other
|
|
compilers. Patches are welcome.
|
|
|
|
Older versions of Doxygen has bugs in the man-page generation which
|
|
cause the builtin help to render incorrectly. Doxygen 1.2.14 is known
|
|
to have this problem.
|
|
|
|
|
|
Prerequisites
|
|
=============
|
|
|
|
Fish requires the following packages to build:
|
|
|
|
- Doxygen
|
|
- Curses or Ncurses
|
|
|
|
fish also relies on standard unix tools such as cat, cut, grep, sed,
|
|
whoami, bc and echo. Fish does not support cross-compilation, separate
|
|
build directories or any other fancy configure options.
|
|
|
|
|
|
Simple install procedure
|
|
========================
|
|
|
|
If you have downloaded the darcs repository of fish, you need to run
|
|
the autoconf command first. Then use the following commands to compile
|
|
fish:
|
|
|
|
% ./configure
|
|
% make # Compile fish
|
|
% make install # Install fish
|
|
% echo /usr/local/bin/fish >>/etc/shells # Add fish to list of shells
|
|
|
|
If you wish to use fish as your default shell, use the following
|
|
command:
|
|
|
|
% chsh -s /usr/local/bin/fish
|
|
|
|
chsh will prompt you for your password, and change your default shell.
|
|
|
|
|
|
Local install procedure
|
|
=======================
|
|
|
|
If you have downloaded the darcs repository of fish, you need to run
|
|
autoconf first.
|
|
|
|
To install fish in your own home directory (typically as non-root),
|
|
type:
|
|
|
|
% ./configure --prefix=$HOME
|
|
% make # Compile fish
|
|
% make install # Install fish
|
|
|
|
You will not be able to use fish as the default shell unless you also
|
|
add the corresponding line to /etc/shells, which mostly defeats the
|
|
point of a local install. As a workaround, you can add fish as the
|
|
last command of the init files for your regular shell.
|