OpenSSL problem on Windows 10 #175
-
I'm trying to build RV with the OpenEXR fix for DWAA, but my formerly working build setup is failing. I keep getting this error, any ideas how to fix? Thanks! nasm -Ox -f win64 -DNEAR -g -o crypto\aes\aesni-sha1-x86_64.obj "crypto\aes\aesni-sha1-x86_64.asm" |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Did you perhaps update your version of nmake or nasm? I had something similar and a clean build fixed the problem. Can you try doing a |
Beta Was this translation helpful? Give feedback.
-
@rogernelson Thanks Roger. This is using my old RV-building VM so nothing should have changed. What I ended up doing was downloading the source from a forked repo that hasn't been updated and patching in my changes, including the updated OpenEXR version. Working fine now! Seems that something changed since the initial release and my old build setup doesn't work... Anyway, no problem for now, but may have to revisit when the OCIO 2 changes hit. |
Beta Was this translation helpful? Give feedback.
-
I had a similar error with latest revision as below. Any hint?
|
Beta Was this translation helpful? Give feedback.
-
In trying to get a more up to date build in Windows I found that this commit 624589f was causing the issue. More specifically it's the removal of |
Beta Was this translation helpful? Give feedback.
In trying to get a more up to date build in Windows I found that this commit 624589f was causing the issue. More specifically it's the removal of
configure_args.append("no-asm")
. Once you add that line back in, I was able to successfully get a build within a Windows 10 virtual machine.