-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
The flag SymbolRef::SF_Export is never set in COFFObjectFile #25867
Comments
This patch fixes the problem for me The JIT tutorial seems to work well, however. |
It doesn't work in MSVC++. What compiler do you use? |
What error do you receive? Does it compile? I just tried the BuildingAJIT Chapter 1 Tutorial and the Kaleidoscope-Ch4.exe. Previously these would crash as you described whenever a top-level expression was entered, as the newly created function computing it would not be found. I now get the correct answer. |
Looking at the history of the file, Lang Hames already tried a similar patch in January, but then reverted it the next day. He also started a discussion on the Mailing list with regards to setting this flag, and it seems the proposed solution was not to rely on it in the JIT, rather than changing the flag, which would not have matched what the COFF linker does. Sorry for not consulting the "history" before. |
AFAIR llvm extensively uses C++14 features and therefore it compiles with VC++ 2015 only. I am using VC++ 2015 community + git version of the llvm + Lang's patch. |
Extended Description
The flag SymbolRef::SF_Export flag is never set in the COFFObjectFile::getSymbolFlags method. Because Kaleidoscope-Orc expects that its compiled expressions will be exported, in Windows environment it gets null pointer instead of valid symbol reference and crush.
The text was updated successfully, but these errors were encountered: