-
Notifications
You must be signed in to change notification settings - Fork 87
Conversation
(PA-6896) remove the shared flag
@@ -21,4 +20,9 @@ | |||
proj.setting(:cppflags, "-I#{proj.includedir} -D_FORTIFY_SOURCE=2") | |||
proj.setting(:cflags, '-fstack-protector-strong -fno-plt -O2') | |||
proj.setting(:ldflags, "-L#{proj.libdir} -Wl,-rpath=#{proj.libdir},-z,relro,-z,now") | |||
elsif(platform.is_el? && platform.os_version.to_i >= 8) |
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.
elsif(platform.is_el? && platform.os_version.to_i >= 8) | |
elsif platform.is_el? && platform.os_version.to_i >= 8 |
@@ -94,7 +94,7 @@ | |||
special_flags = " --prefix=#{ruby_dir} --with-opt-dir=#{settings[:prefix]} " | |||
|
|||
if settings[:supports_pie] | |||
special_flags += " CFLAGS='#{settings[:cflags]}' LDFLAGS='#{settings[:ldflags]}' CPPFLAGS='#{settings[:cppflags]}' " | |||
special_flags += " CFLAGS='-fPIC -fstack-protector-strong -fno-plt -O2' LDFLAGS='#{settings[:ldflags]}' CPPFLAGS='-fPIE #{settings[:cppflags]}' " |
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.
Can you describe why you're removing :cflags from here? What problem is being solved aside from "pie doesn't work"? Does this mean none of the cflags
defined in the project are being passed to the configure
command?
@@ -12,7 +12,6 @@ | |||
# are too old to support these flags. | |||
|
|||
if((platform.is_sles? && platform.os_version.to_i >= 15) || | |||
(platform.is_el? && platform.os_version.to_i == 8 && platform.architecture !~ /ppc64/) || |
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.
Does this mean RHEL 9 ppc now supports pie? If so, the commit message should mention the change in behavior.
Oh sorry I just noticed this is a draft |
Hello, thank you for your contribution! Since this repository is being archived, this PR will be closed. To see more information on this, see OSPTE-212. If possible, please retarget this PR to the corresponding private internal repository. |
(PA-6896) remove the shared flag