Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.5KB

  1. Installation Instructions
  2. =========================
  3. Basic Installation
  4. ------------------
  5. Building this software requires only Python. To install with default options:
  6. ./waf configure
  7. ./waf
  8. ./waf install
  9. You may need to become root for the install stage, for example:
  10. sudo ./waf install
  11. Configuration Options
  12. ---------------------
  13. All supported options can be viewed using the command:
  14. ./waf --help
  15. Most options only need to be passed during the configure stage, for example:
  16. ./waf configure --prefix=/usr
  17. ./waf
  18. ./waf install
  19. Compiler Configuration
  20. ----------------------
  21. Several standard environment variables can be used to control how compilers are
  22. invoked:
  23. * CC: Path to C compiler
  24. * CFLAGS: C compiler options
  25. * CXX: Path to C++ compiler
  26. * CXXFLAGS: C++ compiler options
  27. * CPPFLAGS: C preprocessor options
  28. * LINKFLAGS: Linker options
  29. Installation Directories
  30. ------------------------
  31. The --prefix option (or the PREFIX environment variable) can be used to change
  32. the prefix which all files are installed under. There are also several options
  33. allowing for more fine-tuned control, see the --help output for details.
  34. Packaging
  35. ---------
  36. Everything can be installed to a specific root directory by passing a --destdir
  37. option to the install stage (or setting the DESTDIR environment variable),
  38. which adds a prefix to all install paths. For example:
  39. ./waf configure --prefix=/usr
  40. ./waf
  41. ./waf install --destdir=/tmp/package