aboutsummaryrefslogtreecommitdiff
path: root/Configurations
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-10-23 14:14:48 +0200
committerRichard Levitte <levitte@openssl.org>2019-01-21 19:31:32 +0100
commitd7e4932eaf53a82a2606a73282d9c8a242c1a39d (patch)
tree2f51d61f92d7aea2b811d087fc2c33d6325c5771 /Configurations
parentac454d8d4663e2fcf8a8437fab8aefd883091c37 (diff)
downloadopenssl-d7e4932eaf53a82a2606a73282d9c8a242c1a39d.zip
openssl-d7e4932eaf53a82a2606a73282d9c8a242c1a39d.tar.gz
openssl-d7e4932eaf53a82a2606a73282d9c8a242c1a39d.tar.bz2
Rework building: initial changes
This is the start of a major work to correct some quirks in the buiding system. The base for this is to move certain attributes that lack desired flexibility from Configurations/*.conf to perl modules that can be selected with one single attribute in the config targets. The way this is meant to work is by adding this attribute in select config targets: perl_module => 'Name'; # Name to be replaced Then, in the perl scripts or modules that need the functionality, these lines should be added: use lib catdir($srcdir, 'Configurations'); # Ensure access to platform.pm use lib $blddir; # Ensure access to configdata.pm use platform; # Will load platform::$target{perl_module} Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/7473)
Diffstat (limited to 'Configurations')
-rw-r--r--Configurations/platform.pm18
-rw-r--r--Configurations/platform/BASE.pm96
2 files changed, 114 insertions, 0 deletions
diff --git a/Configurations/platform.pm b/Configurations/platform.pm
new file mode 100644
index 0000000..909da0a
--- /dev/null
+++ b/Configurations/platform.pm
@@ -0,0 +1,18 @@
+package platform;
+
+use strict;
+use warnings;
+use vars qw(@ISA);
+
+# Callers must make sure @INC has the build directory
+use configdata;
+
+my $module = $target{perl_platform} || 'Unix';
+(my $module_path = $module) =~ s|::|/|g;
+
+require "platform/$module_path.pm";
+@ISA = ("platform::$module");
+
+1;
+
+__END__
diff --git a/Configurations/platform/BASE.pm b/Configurations/platform/BASE.pm
new file mode 100644
index 0000000..b7fec11
--- /dev/null
+++ b/Configurations/platform/BASE.pm
@@ -0,0 +1,96 @@
+package platform::BASE;
+
+use strict;
+use warnings;
+use Carp;
+
+# Assume someone set @INC right before loading this module
+use configdata;
+
+# Globally defined "platform specific" extensions, available for uniformity
+sub depext { '.d' }
+
+# Functions to convert internal file representations to platform specific
+# ones. Note that these all depend on extension functions that MUST be
+# defined per platform.
+#
+# Currently known internal or semi-internal extensions are:
+#
+# .a For libraries that are made static only.
+# Internal libraries only.
+# .o For object files.
+# .s, .S Assembler files. This is an actual extension on Unix
+# .res Resource file. This is an actual extension on Windows
+
+sub binname { return $_[1] } # Name of executable binary
+sub dsoname { return $_[1] } # Name of dynamic shared object (DSO)
+sub sharedname { return __isshared($_[1]) ? $_[1] : undef } # Name of shared lib
+sub staticname { return __base($_[1], '.a') } # Name of static lib
+
+# Convenience function to convert the shlib version to an acceptable part
+# of a file or directory name.
+sub shlib_version_as_filename { return $_[1] }
+
+# Convenience functions to convert the possible extension of an input file name
+sub bin { return $_[0]->binname($_[1]) . $_[0]->binext() }
+sub dso { return $_[0]->dsoname($_[1]) . $_[0]->dsoext() }
+sub sharedlib { return __concat($_[0]->sharedname($_[1]), $_[0]->shlibext()) }
+sub staticlib { return $_[0]->staticname($_[1]) . $_[0]->libext() }
+
+# More convenience functions for intermediary files
+sub def { return __base($_[1], '.ld') . $_[0]->defext() }
+sub obj { return __base($_[1], '.o') . $_[0]->objext() }
+sub res { return __base($_[1], '.res') . $_[0]->resext() }
+sub dep { return __base($_[1], '.o') . $_[0]->depext() } # <- objname
+sub asm { return __base($_[1], '.S', '.s') . $_[0]->asmext() }
+
+# Another set of convenience functions for standard checks of certain
+# internal extensions and conversion from internal to platform specific
+# extension. Note that the latter doesn't deal with libraries because
+# of ambivalence
+sub isdef { return $_[1] =~ m|\.ld$|; }
+sub isobj { return $_[1] =~ m|\.o$|; }
+sub isres { return $_[1] =~ m|\.res$|; }
+sub isasm { return $_[1] =~ m|\.[Ss]$|; }
+sub convertext {
+ if ($_[0]->isdef($_[1])) { return $_[0]->def($_[1]); }
+ if ($_[0]->isobj($_[1])) { return $_[0]->obj($_[1]); }
+ if ($_[0]->isres($_[1])) { return $_[0]->res($_[1]); }
+ if ($_[0]->isasm($_[1])) { return $_[0]->asm($_[1]); }
+ return $_[1];
+}
+
+# Helpers ############################################################
+
+# __base EXPR, LIST
+# This returns the given path (EXPR) with the matching suffix from LIST stripped
+sub __base {
+ my $path = shift;
+ foreach (@_) {
+ if ($path =~ m|\Q${_}\E$|) {
+ return $`;
+ }
+ }
+ return $path;
+}
+
+# __isshared EXPR
+# EXPR is supposed to be a library name. This will return true if that library
+# can be assumed to be a shared library, otherwise false
+sub __isshared {
+ return !($disabled{shared} || $_[0] =~ /\.a$/);
+}
+
+# __concat LIST
+# Returns the concatenation of all elements of LIST if none of them is
+# undefined. If one of them is undefined, returns undef instead.
+sub __concat {
+ my $result = '';
+ foreach (@_) {
+ return undef unless defined $_;
+ $result .= $_;
+ }
+ return $result;
+}
+
+1;