diff options
author | Richard Levitte <levitte@openssl.org> | 2016-02-18 18:43:56 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-02-19 11:06:54 +0100 |
commit | 3a55c92bbad0b720c9a3d7a56fa3c351b65a89ee (patch) | |
tree | 59e5462b3f76ce4de66c9b5dc8243f5d8f632670 /crypto/build.info | |
parent | VMS: rather use a quick file comparison than DIFF (diff) | |
download | openssl-3a55c92bbad0b720c9a3d7a56fa3c351b65a89ee.tar.xz openssl-3a55c92bbad0b720c9a3d7a56fa3c351b65a89ee.zip |
Rethink the uplink / applink story
Adding uplink and applink to some builds was done by "magic", the
configuration for "mingw" only had a macro definition, the Configure
would react to its presence by adding the uplink source files to
cpuid_asm_src, and crypto/build.info inherited dance to get it
compiled, and Makefile.shared made sure applink.o would be
appropriately linked in. That was a lot under the hood.
To replace this, we create a few template configurations in
Configurations/00-base-templates.conf, inherit one of them in the
"mingw" configuration, the rest is just about refering to the
$target{apps_aux_src} / $target{apps_obj} in the right places.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'crypto/build.info')
-rw-r--r-- | crypto/build.info | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/crypto/build.info b/crypto/build.info index 507e998fc5..b360ff876e 100644 --- a/crypto/build.info +++ b/crypto/build.info @@ -21,12 +21,6 @@ crypto/buildinf.h : Makefile ##### APPLINK, UPLINK and CPUID assembler implementations -{- $builddir -}/applink.o: $(SRCDIR)/ms/applink.c - $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/ms/applink.c - -{- $builddir -}/uplink.o: $(SRCDIR)/ms/uplink.c {- $builddir -}/applink.o - $(CC) $(CFLAGS) -c -o $@ $(SRCDIR)/ms/uplink.c - {- $builddir -}/uplink-x86.s: $(SRCDIR)/ms/uplink-x86.pl CC="$(CC)" $(PERL) $(SRCDIR)/ms/uplink-x86.pl $(PERLASM_SCHEME) > $@ |