Skip to content

Commit

Permalink
Merge pull request plasma-umass#187 from kormang/impr_dev_ex
Browse files Browse the repository at this point in the history
Improve developer's first experience
  • Loading branch information
emeryberger authored Oct 28, 2021
2 parents 3c5d6d3 + 1bac051 commit b88a9ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ benchmarks/pbzip2/bzip2-1.0.6
benchmarks/string_match/string_match_datafiles
benchmarks/word_count/word_count_datafiles

build/

viewer/node_modules
rust/Cargo.lock
rust/target
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ $ pip install conan --user
$ git clone https://github.com/plasma-umass/coz.git
$ cd coz
$ mkdir build && cd build
$ # This helps to avoid problems with linker failing to find C++ symbols:
$ conan profile update settings.compiler.libcxx=libstdc++11 default
$ conan install ..
$ cmake ..
$ make
Expand Down
4 changes: 3 additions & 1 deletion coz
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ def _coz_run(args):
os.path.join(coz_prefix, '..', 'lib', 'coz-profiler', 'libcoz.so'),

# Local library under development directory
os.path.join('libcoz', 'libcoz.so') # Local library during development
os.path.join('libcoz', 'libcoz.so'), # Local library during development
os.path.join(coz_prefix, 'libcoz', 'libcoz.so'),
os.path.join(coz_prefix, 'build', 'libcoz', 'libcoz.so'),
]

# Find the first library location that exists
Expand Down

0 comments on commit b88a9ac

Please sign in to comment.