build_system.txt 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. FFmpeg currently uses a custom build system, this text attempts to document
  2. some of its obscure features and options.
  3. Options to make:
  4. make V=1 <target>
  5. Build target with verbosity 1, instead of 1, 2 can be used too
  6. Useful standard make commands:
  7. make -t <target>
  8. Touch all files that otherwise would be build, this is useful to reduce
  9. unneeded rebuilding when changing headers, but note you must force rebuilds
  10. of files that actually need it by hand then.
  11. make -j<num>
  12. rebuild with multiple jobs at the same time. Faster on multi processor systems
  13. make -k
  14. continue build in case of errors, this is useful for the regression tests
  15. sometimes but note it will still not run all reg tests.
  16. Targets to make:
  17. fate-list
  18. Will list all fate/regression test targets
  19. fate
  20. Run the fate test suite, note you must have installed it
  21. Setting up local fate:
  22. use the following command to get the fate test samples
  23. rsync -aL rsync://rsync.mplayerhq.hu:/samples/fate-suite/ fate/fate-suite
  24. pass --samples=<path to the samples> to configure