DOCUMENTATION 1.0 KB

123456789101112131415
  1. TODO: proper TeXinfo documentation.
  2. TODO: actually build examples, bechmarks, things
  3. Libraries are by default put in the 'lib' output when that exists, 'out' otherwise.
  4. Crate info files are by default put in the 'env' output when that exists, 'lib' or 'out' otherwise.
  5. Binaries are by default put in the 'bin' when that output exists, 'out' otherwise.
  6. Examples binaries are put in 'example', or 'bin', or 'out' instead.
  7. Benchmark binaries are put in 'benchmarks', or 'bin', or 'out' instead.
  8. Test binaries are put in 'tests', but keep in mind that currently tests are not compiled by default when cross-compiling (this could change in the future if desired, but for now we keep the behaviour of other build systems). If this output does not exist, it is put in '.guix-tests' in the working directory instead (and not installed).
  9. Crate types:
  10. * rlib: equivalent to static libraries (.a) for C, + some metadata
  11. * staticlib: _not_ static library, but rather the compiled crate _and all its dependencies_ as a single static library
  12. * ...