Skip to content

Commit

Permalink
[platformInfo] Add attribute weak to static storage declaration for s…
Browse files Browse the repository at this point in the history
…imulators to fix windaube build (declaration is always weak for non-N0110 bootloader config)
  • Loading branch information
Yaya-Cout committed Jan 3, 2025
1 parent f7cd169 commit 7f560f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ion/src/simulator/shared/platform_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#endif

namespace Ion {
extern char staticStorageArea[];
extern __attribute__((weak)) char staticStorageArea[];
}
constexpr void * storageAddress = &(Ion::staticStorageArea);

Expand Down

0 comments on commit 7f560f8

Please sign in to comment.