-
Notifications
You must be signed in to change notification settings - Fork 13
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
add constants used by alternate saver of patchelf.rb #44
Conversation
Please rebase, I just fixed the CI issues. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
lib/elftools/constants.rb
Outdated
@@ -95,6 +95,7 @@ module DT | |||
DT_VERDEF = 0x6ffffffc # address of version definition table | |||
DT_VERDEFNUM = 0x6ffffffd # number of entries in {DT_VERDEF} | |||
DT_VERNEED = 0x6ffffffe # address of version dependency table | |||
DT_VERSYM = 0x6ffffff0 # section address of .gnu.version. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the period in the end
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
lib/elftools/constants.rb
Outdated
@@ -212,6 +213,15 @@ def self.mapping(type) | |||
end | |||
include ET | |||
|
|||
# segment permission flags, bitwise ored value is recorded in +p_flags+ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make it a sentence (i.e. capitalize, add period)
Same below
These constants are used by alternate saver of patchelf.rb
a99bdb9
to
e897f8d
Compare
good now ? |
constants required for david942j/patchelf.rb#28