Skip to content
Snippets Groups Projects
Commit 393f2775 authored by Alexander Peyser's avatar Alexander Peyser Committed by Ben Cumming
Browse files

Debugging dryrun with 28k nodes (#160)

Includes a fix to the readme which applies to any external modcc, and a way to keep from rebuilding locally an external modcc.
parent ebf96678
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ cmake <path to CMakeLists.txt> -DCMAKE_BUILD_TYPE=release
make -j8
# set path and test that you can see modcc
export PATH=`pwd`/bin:$PATH
export PATH=`pwd`/modcc:$PATH
which modcc
```
......
......@@ -14,7 +14,10 @@ add_subdirectory(global_communication)
add_subdirectory(performance)
# modcc tests
add_subdirectory(modcc)
if(NOT use_external_modcc)
add_subdirectory(modcc)
endif()
# Proposed additional test types:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment