Unverified Commit 91407007 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

rather than abort with an error, assume -DLAMMPS_SMALLBIG if no define is set

parent 0c29c282
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -16,8 +16,12 @@
   new LAMMPS-specific functions can be added
*/

/*
 * Follow the behavior of regular LAMMPS compilation and assume
 * -DLAMMPS_SMALLBIG when no define is set.
 */
#if !defined(LAMMPS_BIGBIG) && !defined(LAMMPS_SMALLBIG) && !defined(LAMMPS_SMALLSMALL)
#error Must define LAMMPS_BIGBIG, LAMMPS_SMALLBIG, or LAMMPS_SMALLSMALL
#define LAMMPS_SMALLBIG
#endif

#include <mpi.h>