arrays - Visual Studio 2022 - Fortran - Debugging Issue - Stack Overflow
I have been working on a Fortran code in visual studio 2022 using intel OneAPI compiler. The code is compiling correctly and it is running fine. Recently when I try to debug the code, I am unable to view the values of array variables in local or quick watch and get the message "undefined address" or "undefined variable xxx". Where xxx is a cell_obj type variable that is defined globally.
For Ex. cel(i)%nn - is the array for number density with "i" number of cells. When I want to look at the value at cel(30)%nn in quick watch I get the message "undefined variable cel". The code is running without any issues and all the output files are printed correctly. I can even see the value when I use print statements but not in quick watch during debug.
I have been using this code for my research last 2 years and never had this problem which has started occurring recently. I don't remember making any changes to the settings or the code. Also, based on some recommendations in other posts, I have ensured that the optimization is disabled and the project is running under debug configuration not release configuration.
I would appreciate any insight into this situation.
Thank you
- 千万别反悔 库克称苹果不会推出变形本
- 虚拟现实技术2015年将迎来爆发
- reactjs - CORS issue from React to Flask - Stack Overflow
- visual studio code - Why am I getting “Type annotations can only be used in TypeScript files” with tsx files? - Stack Overflow
- How to Interact with iframe in Google Form “add file” feature Using Python and Playwright? - Stack Overflow
- dart - Flutter local notification throws error when i try to setup scheduled Notification - Stack Overflow
- swift - How to Add .mlmodel File to Xcode App Playgrounds (.swiftpm) Project? - Stack Overflow
- c# - I have a time clock connected to my local network and I have a Windows server on localweb and I can't get the clock
- typescript - Issues with generic type narrowing on merged records - Stack Overflow
- How do I configure nginx for proxy_pass and ssl redirect? - Stack Overflow
- javascript - Mapping through these JSON elements - Stack Overflow
- malloc - C memory leak warning - Stack Overflow
- database - Issue in call command during switchover mariadb - Stack Overflow
- c++ - How to create a class setup where two classes each holds an instance of the other? - Stack Overflow
- php - How to return blob in Joomla 5 API - Stack Overflow
- sql - How to add constraint if not exists - Stack Overflow
- tsconfig - Is there a typescript compiler option that prevents implicit widening from readonly properties to readwrite? - Stack