Cling as embedded c ++ interpreter?

时间:2014-06-21 17:58:00

标签: llvm cling

我想在我的应用中使用Cling作为嵌入式c ++解释器。目前,它旨在获取控制台输入并提供输出。如何更改才能嵌入 - 获取输入流并提供可在我的应用中使用的输出流?

1 个答案:

答案 0 :(得分:0)

[cling$] .help
...
  .> <filename>     - Redirect command to a given file
  '>' or '1>'       - Redirects the stdout stream only
  '2>'          - Redirects the stderr stream only
  '&>' (or '2>&1')      - Redirects both stdout and stderr
  '>>'          - Appends to the given file

这就是人们可以重定向执行结果流的方式。