Skip to content

Commit

Permalink
JIT: Allow long identifier names for GNU compiler
Browse files Browse the repository at this point in the history
This is needed after f90wrap updates causes even longer module and
subroutine names when wrapping tests in CI.
  • Loading branch information
mlange05 authored and reuterbal committed May 10, 2024
1 parent ddb3e0d commit 8486c69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loki/build/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,9 @@ class GNUCompiler(Compiler):
CC = 'gcc'
CFLAGS = ['-g', '-fPIC']
F90 = 'gfortran'
F90FLAGS = ['-g', '-fPIC']
F90FLAGS = ['-g', '-fPIC', '-fmax-identifier-length=256']
FC = 'gfortran'
FCFLAGS = ['-g', '-fPIC']
FCFLAGS = ['-g', '-fPIC', '-fmax-identifier-length=256']
LD = 'gfortran'
LDFLAGS = ['-static']
LD_STATIC = 'ar'
Expand Down

0 comments on commit 8486c69

Please sign in to comment.