Question from a user/developer:I created a serial test case using the gx1 grid. Turns out this configuration is not in any of the test suites. It resulted in a segmentation fault at ice_transport_remap.F90:315 or ice_transport_driver.F90:222 (it would segfault as soon as it entered these subroutines).After investigating I figured it was due to a stack overflow, and indeed I used the compilation flag -heap-arrays 1024 (for Intel) to put all automatic arrays larger than 1024 kB on the heap instead of the stack and it ran without problem.Do we need to list similar options for other compilers?