Guest User

Untitled

a guest
Apr 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. root@mars:~/ldc# llvm-config
  2. usage: llvm-config <OPTION>... [<COMPONENT>...]
  3.  
  4. Get various configuration information needed to compile programs which use
  5. LLVM. Typically called from 'configure' scripts. Examples:
  6. llvm-config --cxxflags
  7. llvm-config --ldflags
  8. llvm-config --libs engine bcreader scalaropts
  9.  
  10. Options:
  11. --version Print LLVM version.
  12. --prefix Print the installation prefix.
  13. --src-root Print the source root LLVM was built from.
  14. --obj-root Print the object root used to build LLVM.
  15. --bindir Directory containing LLVM executables.
  16. --includedir Directory containing LLVM headers.
  17. --libdir Directory containing LLVM libraries.
  18. --cppflags C preprocessor flags for files that include LLVM headers.
  19. --cflags C compiler flags for files that include LLVM headers.
  20. --cxxflags C++ compiler flags for files that include LLVM headers.
  21. --ldflags Print Linker flags.
  22. --libs Libraries needed to link against LLVM components.
  23. --libnames Bare library names for in-tree builds.
  24. --libfiles Fully qualified library filenames for makefile depends.
  25. --components List of all possible components.
  26. --targets-built List of all targets currently built.
  27. --host-target Target triple used to configure LLVM.
  28. --build-mode Print build mode of LLVM tree (e.g. Debug or Release).
  29. Typical components:
  30. all All LLVM libraries (default).
  31. backend Either a native backend or the C backend.
  32. engine Either a native JIT or a bitcode interpreter.
  33. root@mars:~/ldc#
Add Comment
Please, Sign In to add comment