Move cfunction invocation code to the interpreter loop.
4 files changed
tree: 9b0003e3899a24d42a3d7247d43664de956713d4
  1. build/
  2. config/
  3. docs/
  4. scripts/
  5. tests/
  6. .gitattributes
  7. .gitignore
  8. AUTHORS
  9. builtin.c
  10. builtin.h
  11. bytecode.c
  12. bytecode.h
  13. compile.c
  14. compile.h
  15. config.h.in
  16. configure.ac
  17. COPYING
  18. exec_stack.h
  19. execute.c
  20. execute.h
  21. gen_utf8_tables.py
  22. jq.1.default
  23. jq.spec
  24. jq_parser.h
  25. jq_test.c
  26. jv.c
  27. jv.h
  28. jv_alloc.c
  29. jv_alloc.h
  30. jv_aux.c
  31. jv_aux.h
  32. jv_dtoa.c
  33. jv_dtoa.h
  34. jv_file.c
  35. jv_file.h
  36. jv_parse.c
  37. jv_parse.h
  38. jv_print.c
  39. jv_unicode.c
  40. jv_unicode.h
  41. jv_utf8_tables.h
  42. lexer.l
  43. locfile.c
  44. locfile.h
  45. main.c
  46. Makefile.am
  47. opcode_list.h
  48. parser.y
  49. README.md
  50. setup.sh
README.md

jq

jq is a command-line JSON processor.

If you want to learn to use jq, read the documentation at http://stedolan.github.io/jq. This documentation is generated from the docs/ folder of this repository.

If you want to hack on jq, feel free, but be warned that its internals are not well-documented at the moment. Bring a hard hat and a shovel. Also, read the wiki: http://github.com/stedolan/jq/wiki

If you‘re building directly from the latest git, you’ll need flex and bison installed. To build, run:

autoreconf
./configure
make

After make finishes, you'll be able to use ./jq. You can also install it using:

sudo make install

If you‘re not using the latest git version but instead building a released tarball (available on the website), then you won’t need to run autoreconf (and shouldn‘t), and you won’t need flex or bison.