Skip to content

Commit 311b40f

Browse files
committed
readme changes, everything is working
1 parent 92e58c8 commit 311b40f

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.vscode/settings.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"files.associations": {
3+
"conv-ccs.C": "cpp",
4+
"client.C": "cpp",
5+
"convcore.C": "cpp"
6+
}
7+
}

docs/install.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ the charm directory and run the following build command, then build Charm4Py::
5858
$ cd ../..
5959
$ pip install .
6060

61+
On MacOS, you may need to set your DYLD_LIBRARY_PATH so that the dynamic linker can find Charm++ libraries. For example:
62+
63+
$ export DYLD_LIBRARY_PATH=<charm_install_folder>/lib
64+
65+
Replace <charm_install_folder> with the path where you built/installed Charm++(usually this is the charm_src/charm folder)
66+
6167
Finally, if necessary, when installing dependencies or when running the install script, add the --user
6268
option to the Python command to complete the installation without permission errors.
6369

examples/ccs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Instructions to run CCS Example
22

33
1. Start up your python virtual env if using one
4-
2. Boot up the server through the command: python -m charmrun.start +p2 ++server ++local ccs_server.py
4+
2. Boot up the server through the command: python -m charmrun.start +p<N> ++server ++local ccs_server.py
55
3. Grab and store the the Server IP and Server Port that will appear in stdout when you run the above command
66
4. In another terminal, cd to the converse/ccstest example in the charm++ repository and run a client program through the command: ./client server_ip server_port

0 commit comments

Comments
 (0)