Building: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 18: | Line 18: | ||
| rowspan="8"| Build tools | | rowspan="8"| Build tools | ||
| C++, C, and Fortran compilers | | C++, C, and Fortran compilers | ||
| | | Compiling the source code | ||
| build-essential | | build-essential | ||
|- | |- | ||
| [http://www.gnu.org/software/make GNU Make] | | [http://www.gnu.org/software/make GNU Make] | ||
| | | Makefile processor | ||
| | | make | ||
|- | |- | ||
| AWK, sed, and other Unix utilities | | AWK, sed, and other Unix utilities | ||
| | | Miscellaneous tasks | ||
| | | awk, sed, ... | ||
|- | |- | ||
| [http://www.gnu.org/software/bison Bison] | | [http://www.gnu.org/software/bison Bison] | ||
| | | Parser generator | ||
| | | bison | ||
|- | |- | ||
| [http://www.gnu.org/software/flex Flex] | | [http://www.gnu.org/software/flex Flex] | ||
| | | Lexical analyzer | ||
| | | flex | ||
|- | |- | ||
| [http://www.gnu.org/software/autoconf Autoconf] | | [http://www.gnu.org/software/autoconf Autoconf] | ||
| | | Software configuration | ||
| | | autoconf | ||
|- | |- | ||
| [http://www.gnu.org/software/automake Automake] | | [http://www.gnu.org/software/automake Automake] | ||
| | | Makefile generator | ||
| | | automake | ||
|- | |- | ||
| [http://www.gnu.org/software/libtool Libtool] | | [http://www.gnu.org/software/libtool Libtool] | ||
| | | Dependency of automake | ||
| | | libtool | ||
|} | |} | ||
[[Category:Building]] | [[Category:Building]] |
Revision as of 14:22, 6 December 2013
General information about building the Octave source for different operating systems.
We try to keep build instructions up to date in the source tree. Please clone using Mercurial or download it to see the README.
There are also instructions in the manual.
There is a page for Debian/Ubuntu users here.
Dependencies
Task | Name | Usage | Debian |
---|---|---|---|
Build tools | C++, C, and Fortran compilers | Compiling the source code | build-essential |
GNU Make | Makefile processor | make | |
AWK, sed, and other Unix utilities | Miscellaneous tasks | awk, sed, ... | |
Bison | Parser generator | bison | |
Flex | Lexical analyzer | flex | |
Autoconf | Software configuration | autoconf | |
Automake | Makefile generator | automake | |
Libtool | Dependency of automake | libtool |