citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 288d55f9c382fb0b41cd623f5de1d9e28e53750c
parent 43903024cdae258ebfc8d3c708eb392995d9198f
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Fri, 11 Mar 2016 22:11:08 -0700

instrument: add compilers here

- the compilers are really fake names for scv_instrument
- so move them into the same subdirectory
  - this should make installation easier as each compiler is a symlink

Diffstat:
MSCV/Project.pm | 2+-
Ainstrument/compilers/c++ | 2++
Ainstrument/compilers/cc | 2++
Ainstrument/compilers/g++ | 2++
Ainstrument/compilers/gcc | 2++
5 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/SCV/Project.pm b/SCV/Project.pm @@ -50,7 +50,7 @@ EOF syswrite( $makefile_fh, $makefile ); # Hook $PATH so we run our "compiler" first - $ENV{SCV_PATH} = "$ENV{HOME}/src/scv/compilers"; + $ENV{SCV_PATH} = "$ENV{HOME}/src/scv/instrument/compilers"; $ENV{PATH} = "$ENV{SCV_PATH}:$ENV{PATH}"; # Link in the runtime diff --git a/instrument/compilers/c++ b/instrument/compilers/c++ @@ -0,0 +1 @@ +../scv_instrument +\ No newline at end of file diff --git a/instrument/compilers/cc b/instrument/compilers/cc @@ -0,0 +1 @@ +../scv_instrument +\ No newline at end of file diff --git a/instrument/compilers/g++ b/instrument/compilers/g++ @@ -0,0 +1 @@ +../scv_instrument +\ No newline at end of file diff --git a/instrument/compilers/gcc b/instrument/compilers/gcc @@ -0,0 +1 @@ +../scv_instrument +\ No newline at end of file