Commit 300ac303 authored by sjplimp's avatar sjplimp Committed by GitHub
Browse files

Merge pull request #273 from akohlmey/auto-memalign

turn on -DLAMMPS_MEMALIGN=64 automatically when USER-INTEL is installed
parents 2535e449 22d93fe8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ SHELL = /bin/sh
# specify flags and libraries needed for your compiler

CC =		mpicxx -cxx=icc
CCFLAGS =	-g -O3
CCFLAGS =	-g -O3 -restrict
SHFLAGS =	-fPIC
DEPFLAGS =	-M

+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ SHELL = /bin/sh
# specify flags and libraries needed for your compiler

CC =		icc
CCFLAGS =	-g -O3
CCFLAGS =	-g -O3 -restrict
SHFLAGS =	-fPIC
DEPFLAGS =	-M

+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ SHELL = /bin/sh

export OMPI_CXX = icc
CC =		mpicxx
CCFLAGS =	-g -O3
CCFLAGS =	-g -O3 -restrict
SHFLAGS =	-fPIC
DEPFLAGS =	-M

+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ SHELL = /bin/sh
# specify flags and libraries needed for your compiler

CC =		icc
CCFLAGS =	-g -O3
CCFLAGS =	-g -O3 -restrict
SHFLAGS =	-fPIC
DEPFLAGS =	-M

+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ SHELL = /bin/sh
# specify flags and libraries needed for your compiler

CC =		icc
CCFLAGS =	-g -O3
CCFLAGS =	-g -O3 -restrict
SHFLAGS =	-fPIC
DEPFLAGS =	-M

Loading