Daniel Hoying
Daniel Hoying
Yes, I know about these. I added an option to that list, which is the legacy option I'm using.
Never mind, I was mistaken: I added the option here: ``` AC_ARG_ENABLE([comms],[AC_HELP_STRING([--enable-comms=none|mpi|mpi-auto], [Select communications])],[ac_COMMS=${enable_comms}],[ac_COMMS=none]) case ${ac_COMMS} in none) AC_DEFINE([GRID_COMMS_NONE],[1],[GRID_COMMS_NONE] ) comms_type='none' ;; mpi3*) AC_DEFINE([GRID_COMMS_MPI3],[1],[GRID_COMMS_MPI3] ) comms_type='mpi3' ;; mpi*) AC_DEFINE([GRID_COMMS_MPI],[1],[GRID_COMMS_MPI] )...
Yes, I heard this happened awhile ago. The option name is just something I chose to distinguish the legacy comms code from the current comms options. I should also mention...