Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • For the 32 bit build you will need to add   multilib This time the name only gets the sub (3rd digit) version (and the D for debug - for a new target VC-WIN32D.)

    Code Block
        "VC-WIN32" => {
            inherit_from     => [ "VC-noCE-common", asm("x86_asm"),
                                  sub { $disabled{shared} ? () : "uplink_common" } ],
            CFLAGS           => add("/WX"),
            AS               => sub { vc_win32_info()->{AS} },
            ASFLAGS          => sub { vc_win32_info()->{ASFLAGS} },
            asoutflag        => sub { vc_win32_info()->{asoutflag} },
            asflags          => sub { vc_win32_info()->{asflags} },
            sys_id           => "WIN32",
            bn_ops           => add("BN_LLONG"),
            perlasm_scheme   => sub { vc_win32_info()->{perlasm_scheme} },
            # "WOW" stands for "Windows on Windows", and "VC-WOW" engages
            # some installation path heuristics in windows-makefile.tmpl...
            build_scheme     => add("VC-WOW", { separator => undef }),
            multilib         => "_1_4",
        },
        "VC-WIN32D" => {
            inherit_from     => [ "VC-noCE-common", asm("x86_asm"),
                                  sub { $disabled{shared} ? () : "uplink_common" } ],
            CFLAGS           => add("/WX"),
            AS               => sub { vc_win32_info()->{AS} },
            ASFLAGS          => sub { vc_win32_info()->{ASFLAGS} },
            asoutflag        => sub { vc_win32_info()->{asoutflag} },
            asflags          => sub { vc_win32_info()->{asflags} },
            sys_id           => "WIN32",
            bn_ops           => add("BN_LLONG"),
            perlasm_scheme   => sub { vc_win32_info()->{perlasm_scheme} },
            # "WOW" stands for "Windows on Windows", and "VC-WOW" engages
            # some installation path heuristics in windows-makefile.tmpl...
            build_scheme     => add("VC-WOW", { separator => undef }),
            multilib         => "_1_4D",
        },


  • If building OpenSSL3, check that the following patch has been applied (it is not present in 3.0.0) 

    Code Block
    diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
    index 78d39ffb4b..81a94ee19f 100644
    --- a/Configurations/windows-makefile.tmpl
    +++ b/Configurations/windows-makefile.tmpl
    @@ -983,6 +983,7 @@ EOF
                     @{$args{objs}};
          my @deps = compute_lib_depends(@{$args{deps}});
          my $objs = join($target{ld_resp_delim}, @objs);
    +     my $ress = join($target{ld_resp_delim}, @ress);
          my $linklibs = join("", map { "$_$target{ld_resp_delim}" } @deps);
          my $deps = join(" ", @objs, @ress, @deps);
          return <<"EOF";



NMAKE targets

clean

Cleans all build environments

...