citrun

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

commit 5d565111f49a5d52ea0890cb79666d852747737a
parent 4c3a3f99d0732987422ea02f58030fb33310a75a
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Tue, 29 Mar 2016 21:24:44 -0600

SCV: if we're running tests we'll want these set

Diffstat:
MSCV/Project.pm | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/SCV/Project.pm b/SCV/Project.pm @@ -87,6 +87,8 @@ sub run { my ($self, @args) = @_; $ENV{SCV_VIEWER_SOCKET} = "SCV::Viewer.socket"; + $ENV{LD_LIBRARY_PATH} = "lib"; + $ENV{DYLD_LIBRARY_PATH} = "lib"; my $tmp_dir = $self->{tmp_dir}; $self->{pid} = open3(undef, undef, \*CHLD_ERR, "$tmp_dir/$self->{prog_name}", @args);