diff options
author | Philip Prindeville <philipp@redfish-solutions.com> | 2018-07-31 18:28:41 -0600 |
---|---|---|
committer | Philip Prindeville <philipp@redfish-solutions.com> | 2018-08-01 11:19:32 -0600 |
commit | 4e29b4f3bbc90d7c3c642dafe9ea6180fa030832 (patch) | |
tree | 52bb9a41b17b919db4e8cf6d0eef97acdbc152a0 /lang/perl | |
parent | b94744496ffc56df20088fe3be862f9b9ee47f0e (diff) |
perl: build with -fno-strict-liasing and -fwrapv
Looking at Configure and Porting/config.sh, it seems that Perl
requires both of these options to build correctly.
Should fix FS #1464.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Diffstat (limited to 'lang/perl')
-rw-r--r-- | lang/perl/files/base.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/perl/files/base.config b/lang/perl/files/base.config index 99170bf04..90a2cfbf6 100644 --- a/lang/perl/files/base.config +++ b/lang/perl/files/base.config @@ -1043,7 +1043,7 @@ full_ar="${owrt:target_cross}ar" # Tool flags cppflags="$owrt:cflags" -ccflags="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $owrt:cflags" +ccflags="-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $owrt:cflags" ccflags_uselargefiles='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64' ccdlflags="-fPIC -rdynamic -Wl,-rpath,$owrt:perllibpath/CORE" cccdlflags='-fPIC' |