Skip to content

Show PHP 8.4 (pre-)releases on the Website #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion docroot/listing.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
$baseurl = '/' . $dir_to_parse . '/';

$versions = generate_listing($dir_to_parse, $nmode);
$major_order = array('8.3', '8.2', '8.1');
$major_order = array('8.4', '8.3', '8.2', '8.1');
$minor_order = array(
'8.1' => array(
'nts-vs16-x64',
Expand All @@ -56,6 +56,12 @@
'nts-vs16-x86',
'ts-vs16-x86'
),
'8.4' => array(
'nts-vs17-x64',
'ts-vs17-x64',
'nts-vs17-x86',
'ts-vs17-x86'
),
);

$labels = array(
Expand All @@ -71,6 +77,10 @@
'ts-vs16-x86' => 'VS16 x86 Thread Safe',
'nts-vs16-x64' => 'VS16 x64 Non Thread Safe',
'ts-vs16-x64' => 'VS16 x64 Thread Safe',
'nts-vs17-x86' => 'VS17 x86 Non Thread Safe',
'ts-vs17-x86' => 'VS17 x86 Thread Safe',
'nts-vs17-x64' => 'VS17 x64 Non Thread Safe',
'ts-vs17-x64' => 'VS17 x64 Thread Safe',
);

if ($mode == 'snapshots') {
Expand Down
15 changes: 15 additions & 0 deletions news/2024-07-04-1.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<div class="info entry" id="news-2024-07-04-1">
<!-- .info -->
<h3 class="summary entry-title">PHP 8.4 builds use Visual Studio 2022</h3>
<?php news_date('04-Jul-2024') ?>
<div>
<p>
While previous minor versions of PHP 8 have been built with Visual Studio
2019 (aka. VS16), it is time to use Visual Studio 2022 (aka. VS17) for the
PHP 8.4 builds. To use these builds, you may need to install or update the
Visual C++ Redistributable for Visual Studio 2015-2022
<a href="https://aka.ms/vs/17/release/vc_redist.x64.exe">x64</a> or
<a href="https://aka.ms/vs/17/release/vc_redist.x86.exe">x86</a>.
</p>
</div>
</div><!-- .info -->
6 changes: 3 additions & 3 deletions templates/left_column.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@

<p>With Apache, using the apache2handler SAPI, you have to use the Thread Safe (TS) versions of PHP.</p>

<h4><u>VC15 &amp; VS16</u></h4>
<p>More recent versions of PHP are built with VC15 or VS16 (Visual Studio 2017 or 2019 compiler respectively) and
<h4><u>VS16 &amp; VS17</u></h4>
<p>More recent versions of PHP are built with VS16 or VS17 (Visual Studio 2019 or 2022 compiler respectively) and
include improvements in performance and stability.</p>

<p> - The VC15 and VS16 builds require to have the <i>Visual C++ Redistributable for Visual Studio 2015-2019</i> <a href="https://aka.ms/vs/16/release/VC_redist.x64.exe">x64</a> or <a href="https://aka.ms/vs/16/release/VC_redist.x86.exe">x86</a> installed</p>
<p> - The VS16 and VS17 builds require to have the <i>Visual C++ Redistributable for Visual Studio 2015-2022</i> <a href="https://aka.ms/vs/17/release/vc_redist.x64.exe">x64</a> or <a href="https://aka.ms/vs/17/release/vc_redist.x86.exe">x86</a> installed</p>

<h4><u>TS and NTS</u></h4>
<p><strong>TS</strong> refers to multithread capable builds. <strong>NTS</strong> refers to single thread only builds. Use case for <strong>TS</strong> binaries involves interaction with
Expand Down