summarylogtreecommitdiffstats
path: root/codeviz.install
diff options
context:
space:
mode:
Diffstat (limited to 'codeviz.install')
-rw-r--r--codeviz.install18
1 files changed, 18 insertions, 0 deletions
diff --git a/codeviz.install b/codeviz.install
new file mode 100644
index 000000000000..e701d1e4b800
--- /dev/null
+++ b/codeviz.install
@@ -0,0 +1,18 @@
+post_install() {
+cat << EOT
+ Patched gcc is installed to /opt/gccgraph. To compile a project
+ for use with CodeViz, genearlly the following will work
+
+ make CC=/opt/gccgraph/bin/gcc or g++
+
+ To generate a full.graph file for C, use
+
+ genfull
+
+ For C++, make sure you use the cppdepn method with
+
+ genfull -g cppdepn
+
+ or the results will not be what you expect.
+EOT
+}