Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Stack Overflow problem by moving large arrays from the stack to the heap #410

Merged
merged 3 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into build-win32
  • Loading branch information
Roy-KC authored Apr 22, 2024
commit 70583c909327330fde89311656907f5ba310aaf5
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,6 @@ IF(CMAKE_Fortran_COMPILER_ID MATCHES Intel)
ENDIF()
ENDIF()

ADD_DEFINITIONS()

# Supress CRT Warnings.
# Only necessary for Windows
IF(MSVC)
Expand Down
4 changes: 2 additions & 2 deletions nf_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ SET(CMAKE_INCLUDE_CURRENT_DIR ON)

# Process these files with m4.
SET(m4_SOURCES test_get test_put)
foreach (f ${m4_SOURCES})
GEN_m4(${f})
foreach (f IN LISTS m4_SOURCES)
GEN_m4(${f})
endforeach(f)

# Separate C and Fortran Sources
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.