Variable: org-babel-C++-compiler
org-babel-C++-compiler is a customizable variable defined in
ob-C.el.gz.
Value
"g++"
Documentation
Command used to compile a C++ source code file into an executable.
May be either a command in the path, like g++ or an absolute path name, like /usr/local/bin/g++ parameter may be used, like g++ -v
This variable was added, or its default value changed, in Emacs 24.3.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ob-C.el.gz
(defcustom org-babel-C++-compiler "g++"
"Command used to compile a C++ source code file into an executable.
May be either a command in the path, like g++
or an absolute path name, like /usr/local/bin/g++
parameter may be used, like g++ -v"
:group 'org-babel
:version "24.3"
:type 'string)