I am trying to bind a library that uses 64bits for it's hashing algorithm. In the process I ran into several bugs where I set the architecture to 64 bits with --copt=-m64 and used both -s MEMORY64=1 and -s WASM_BIGINT=1 in the linker options.
Then I got this strange error with Exception: FROZEN_CACHE is set, but cache file is missing, where I hit my debugging limits. I was told that #971 and #1405 may/should've have resolved these issues but again, I am not deep enough into bazel and embind yet to understand the caching issue.
However, to make this process easier, I created a minimum example to reproduce this problem.