Skip to content

Commit

Permalink
try without CMAKE compiler flags in package
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-seaice committed Feb 25, 2025
1 parent 94b9cb6 commit 30abf59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/access-cice/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def cmake_args(self):
]

# we need this for cmake to find MPI_Fortran
args.append(self.define("CMAKE_C_COMPILER", self.spec["mpi"].mpicc))
args.append(self.define("CMAKE_CXX_COMPILER", self.spec["mpi"].mpicxx))
args.append(self.define("CMAKE_Fortran_COMPILER", self.spec["mpi"].mpifc))
# args.append(self.define("CMAKE_C_COMPILER", self.spec["mpi"].mpicc))
# args.append(self.define("CMAKE_CXX_COMPILER", self.spec["mpi"].mpicxx))
# args.append(self.define("CMAKE_Fortran_COMPILER", self.spec["mpi"].mpifc))

return args

0 comments on commit 30abf59

Please sign in to comment.