Developers: Difference between revisions

From Octave
Jump to navigation Jump to search
No edit summary
Line 28: Line 28:
* [[Bug Fix List - 4.0 Release]]
* [[Bug Fix List - 4.0 Release]]
* [[Debugging Octave]], particularly using .oct files and gdb
* [[Debugging Octave]], particularly using .oct files and gdb
* [[Finding Memory Leaks]]
* [[Add BIST tests for octave functions written in C++]]
* [[Add BIST tests for octave functions written in C++]]
* [[BIST for m-files]]
* [[BIST for m-files]]

Revision as of 16:18, 14 September 2017

This page contains links to pages of interest to developers. Some links appear in multiple sections.

Getting started

Project suggestions

Tools

  • Mercurial -- version control scheme.
  • MXE -- cross-compiling to Windows or OSX.
  • Doxygen -- "Literate programming" documentation generator.
  • gdb -- debugger. Useful to obtain stack traces.
  • valgrind -- memory leak detector, profiler etc.
  • ccache -- cache compilation across builds.

Bugs and testing

Works in Progress

Code sprints

Release procedures

Other