"""Custom GPAW siteconfig for LUMI-C."""

mpi = True
compiler = 'CC'
compiler_args = []  # remove all default args
libraries = []
library_dirs = []
include_dirs = []
extra_compile_args = [
    '-g',
    '-O3',
    '-fopenmp',
    '-fPIC',
    '-Wall',
    '-Wno-stringop-overflow',  # suppress warnings from MPI_STATUSES_IGNORE
    '-Wno-deprecated-declarations',  # PySys_SetArgv() etc deprecated in Python 3.11
    '-Werror',
    ]
extra_link_args = ['-fopenmp']

# FFTW
fftw = True
libraries += ['fftw3']

# ScaLAPACK
# Note: required libraries are linked by compiler wrappers
scalapack = True

# Libxc
libraries += ['xc']

define_macros += [('GPAW_ASYNC', 1)]
