build failure using gcc14 on macOS 23.0.0

Issue #2796 resolved
Roland Haas created an issue

Trying to build on a M1 mac with macOS 23.0.0 using a freshly installed homebrew and Xcode and installed packages

brew install fftw gcc gsl hwloc jpeg open-mpi openssl cmake pkg-config bash subversion

Fails in Baikal with:

In file included from /Users/rhaas/Cactus/configs/sim/build/Baikal/Baikal_BSSN_c
onstraints_order_2.c:1:
/Users/rhaas/Cactus/arrangements/WVUThorns/Baikal/src/./simd/simd_intrinsics.h:1
02:25: error: unknown type name 'REAL'
  102 | #define REAL_SIMD_ARRAY REAL

Option list is simfactory’s generated one:

# generic

# This option list is used internally by simfactory as a template during the
# sim setup and sim setup-silent commands
# Edit at your own risk

# Whenever this version string changes, the application is configured
# and rebuilt from scratch
VERSION = 2018-12-13
CPP = cpp-14
CC = gcc-14
CXX = g++-14
FPP = cpp-14
F90 = gfortran-14

CPPFLAGS =
FPPFLAGS = -traditional

CFLAGS   = -g -std=gnu99
# if compiler is old and you do not need AMReX, can change to gnu++11
CXXFLAGS = -g -std=gnu++17
F90FLAGS = -g -fcray-pointer -ffixed-line-length-none

LDFLAGS = -rdynamic

DEBUG           = no
CPP_DEBUG_FLAGS =
C_DEBUG_FLAGS   =
CXX_DEBUG_FLAGS =

OPTIMISE           = yes
CPP_OPTIMISE_FLAGS =
C_OPTIMISE_FLAGS   = -O2
CXX_OPTIMISE_FLAGS = -O2
F90_OPTIMISE_FLAGS = -O2

PROFILE           = no
CPP_PROFILE_FLAGS =
C_PROFILE_FLAGS   = -pg
CXX_PROFILE_FLAGS = -pg
F90_PROFILE_FLAGS = -pg

WARN           = yes
CPP_WARN_FLAGS = -Wall
C_WARN_FLAGS   = -Wall
CXX_WARN_FLAGS = -Wall
F90_WARN_FLAGS = -Wall

OPENMP           = yes
CPP_OPENMP_FLAGS = -fopenmp
FPP_OPENMP_FLAGS = -D_OPENMP
C_OPENMP_FLAGS   = -fopenmp
CXX_OPENMP_FLAGS = -fopenmp
F90_OPENMP_FLAGS = -fopenmp

VECTORISE                = yes
VECTORISE_ALIGNED_ARRAYS = no
VECTORISE_INLINE         = yes

PTHREADS_DIR = NO_BUILD

Full log attached.

Presumably some issue about SIMD / no-SIMD.

Comments (9)

  1. Samuel Cupp

    @Roland Haas can you check if the macFix branch fixes your issue? if it does, I can merge it and then try to fix the code gen.

  2. Roland Haas reporter

    Should not have been anymore. Some sort of user error one assumes. I found the branch and recompiled.

    The branch seems to remove the error.

  3. Log in to comment