Skip to content

Commit

Permalink
fix runtime paths for KLEE
Browse files Browse the repository at this point in the history
  • Loading branch information
mchalupa committed Feb 2, 2019
1 parent 9bbfec9 commit fe2d4ed
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/symbioticpy/symbiotic/tools/kleebase.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,9 @@ def set_environment(self, env, opts):
if opts.devel_mode:
env.prepend('PATH', '{0}/klee/build-{1}/bin'.\
format(env.symbiotic_dir, llvm_version))

prefix = '{0}/install'.format(env.symbiotic_dir)
prefix = '{0}/install'.format(env.symbiotic_dir)
else:
prefix = '{0}'.format(env.symbiotic_dir)

if opts.is32bit:
env.prepend('KLEE_RUNTIME_LIBRARY_PATH',
Expand Down

0 comments on commit fe2d4ed

Please sign in to comment.