Skip to content

Latest commit

 

History

History
34 lines (32 loc) · 1.13 KB

README.md

File metadata and controls

34 lines (32 loc) · 1.13 KB

rosetta

Solutions to problems on Rosetta Code

Languages

Organized by IDE or text editor used.

Notes

  • Everything tends to be console based without additional dependencies.
  • LLVM can be done with
    • clang -S -emit-llvm foo.c to output *.ll files
    • clang -cc1 foo.c -emit-llvm equivalent to the first method
    • llc foo.ll to produce an assembly file *.s. Note that this seems to require a further installation then just clang.
    • clang foo.s or clang foo.ll to produce a runnable program
  • LLVM Language Reference