Skip to content

Commit

Permalink
remove api from stream
Browse files Browse the repository at this point in the history
  • Loading branch information
plavin committed Sep 24, 2024
1 parent 5ee2af5 commit e88b708
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ clean:
rm -f stream stream_mlm

stream:
g++ stream.c -o stream $(CFLAGS_LOCAL) -I$(API_DIR) -L$(API_DIR) -larielapi
g++ stream.c -o stream $(CFLAGS_LOCAL)

stream_mlm:
g++ stream_malloc.c -o stream_mlm $(CFLAGS_LOCAL) -I$(API_DIR) -L$(API_DIR) -larielapi
g++ stream_malloc.c -o stream_mlm $(CFLAGS_LOCAL) -I$(API_DIR) -L. -L$(API_DIR) -larielapi
1 change: 1 addition & 0 deletions src/sst/elements/ariel/tests/testsuite_default_Ariel.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ def _setup_ariel_test_files(self):
current_ld_library_path = os.environ.get("LD_LIBRARY_PATH", "")

OSCommand("make", set_cwd=ArielApiDir).run()
OSCommand("cp {0}/libarielapi.so {1}/libarielapi.so".format(ArielApiDir,self.ArielElementStreamDir)).run()

if current_ld_library_path != "":
new_ld_library_path = f"{current_ld_library_path}:{ArielApiDir}"
Expand Down

0 comments on commit e88b708

Please sign in to comment.