Skip to content
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

Updated backward-cpp to v1.6 Hash: 701bcf38c9f3c4877e1b4a8651b9ce922b… #162

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

hansonry
Copy link

…15969e

Building Open Clonk was failing for me because of some API changes with BFD used by backward-cpp. Looks like the version in openclonk was 6 years old the latest release of backward-cpp was 2 years old. So I picked that version. It looks like the new version of backward-cpp does some checking for backwards compatibility with BFD:

#ifdef bfd_get_section_flags
    if ((bfd_get_section_flags(fobj->handle.get(), section) & SEC_ALLOC) == 0)
#else
    if ((bfd_section_flags(section) & SEC_ALLOC) == 0)
#endif

I have not attempted to build this with the old version of BFD, so I don't know that the backward compatibility works. I was kinda hoping someone else could give it a test. I don't know anything about BFD or how I would install an older version on my system.

P.S. I also added VIM temp files to the .gitingore file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant