mirror of https://github.com/lammps/lammps.git
update for zstd support
This commit is contained in:
parent
19ce59ba38
commit
9afba50d01
|
@ -1,21 +1,24 @@
|
||||||
# This file contains the settings to build and link LAMMPS with
|
# This file contains the settings to build and link LAMMPS with
|
||||||
# support for data compression libraries.
|
# support for data compression libraries.
|
||||||
#
|
#
|
||||||
# When you build LAMMPS with the COMPRESS package installed, it will
|
# When you build LAMMPS with the COMPRESS package installed, it will
|
||||||
# use the 3 settings in this file. They should be set as follows.
|
# use the 3 settings in this file. They should be set as follows.
|
||||||
#
|
#
|
||||||
# The compress_SYSLIB setting is for linking the compression library.
|
# The compress_SYSLIB setting is for linking the compression libraries.
|
||||||
# By default, the setting will point to zlib (-lz).
|
# By default, the setting will point to zlib (-lz). For including
|
||||||
#
|
# Zstandard support add -DLAMMPS_ZSTD to compress_SYSINC and also
|
||||||
# The compress_SYSINC and compress_SYSPATH variables do not typically need
|
# add -lzstd to compress_SYSLIB to link to the library.
|
||||||
# to be set, as compression libraries are usually installed as packages
|
#
|
||||||
# in system locations. Otherwise, specify its directory via the
|
# The compress_SYSINC and compress_SYSPATH variables typically do not
|
||||||
# compress_SYSPATH variable, e.g. -Ldir or compress_SYSINC variable( -Idir)
|
# need any additional settings, as compression libraries are usually
|
||||||
|
# installed as packages in system locations. Otherwise, specify its
|
||||||
|
# library directory via the compress_SYSPATH variable, e.g. -Ldir or
|
||||||
|
# its include directory via the compress_SYSINC variable( -Idir)
|
||||||
|
|
||||||
# -----------------------------------------------------------
|
# -----------------------------------------------------------
|
||||||
|
|
||||||
# Settings that the LAMMPS build will import when this package is installed
|
# Settings that the LAMMPS build will import when this package is installed
|
||||||
|
|
||||||
compress_SYSINC =
|
compress_SYSINC = # -DLAMMPS_ZSTD
|
||||||
compress_SYSLIB = -lz
|
compress_SYSLIB = -lz # -lzstd
|
||||||
compress_SYSPATH =
|
compress_SYSPATH =
|
||||||
|
|
Loading…
Reference in New Issue