3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-04 16:44:08 +00:00

Merge pull request #4953 from YosysHQ/krys/local_docs_fixes

A few fixes, mostly local docs builds
This commit is contained in:
KrystalDelusion 2025-03-25 10:36:18 +13:00 committed by GitHub
commit 644efca341
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 39 additions and 42 deletions

View file

@ -16,15 +16,17 @@ html_theme_options: dict[str] = {
"source_branch": "main", "source_branch": "main",
"source_directory": "docs/source/", "source_directory": "docs/source/",
} }
html_context: dict[str] = {}
# try to fix the readthedocs detection # try to fix the readthedocs detection
html_context: dict[str] = { if os.getenv("READTHEDOCS"):
"READTHEDOCS": True, html_context.update({
"display_github": True, "READTHEDOCS": True,
"github_user": "YosysHQ", "display_github": True,
"github_repo": "yosys", "github_user": "YosysHQ",
"slug": "yosys", "github_repo": "yosys",
} "slug": "yosys",
})
# override source_branch if not main # override source_branch if not main
git_slug = os.getenv("READTHEDOCS_VERSION_NAME") git_slug = os.getenv("READTHEDOCS_VERSION_NAME")

View file

@ -34,31 +34,18 @@ Targeted architectures
The `OSS CAD Suite`_ releases `nightly builds`_ for the following architectures: The `OSS CAD Suite`_ releases `nightly builds`_ for the following architectures:
.. only:: html - **linux-x64** - Most personal Linux based computers
- **darwin-x64** - macOS 12 or later with Intel CPU
- **darwin-arm64** - macOS 12 or later with M1/M2 CPU
- **windows-x64** - Targeted for Windows 10 and 11
- **linux-arm64** - Devices such as Raspberry Pi with 64bit OS
- linux-x64 |linux-x64| For more information about the targeted architectures, and the current build
- Most personal Linux based computers status, check the `OSS CAD Suite`_ git repository.
- darwin-x64 |darwin-x64|
- macOS 12 or later with Intel CPU
- darwin-arm64 |darwin-arm64|
- macOS 12 or later with M1/M2 CPU
- windows-x64 |windows-x64|
- Targeted for Windows 10 and 11
- linux-arm64 |linux-arm64|
.. _OSS CAD Suite: https://github.com/YosysHQ/oss-cad-suite-build .. _OSS CAD Suite: https://github.com/YosysHQ/oss-cad-suite-build
.. _nightly builds: https://github.com/YosysHQ/oss-cad-suite-build/releases/latest .. _nightly builds: https://github.com/YosysHQ/oss-cad-suite-build/releases/latest
.. |linux-x64| image:: https://github.com/YosysHQ/oss-cad-suite-build/actions/workflows/linux-x64.yml/badge.svg
.. |darwin-x64| image:: https://github.com/YosysHQ/oss-cad-suite-build/actions/workflows/darwin-x64.yml/badge.svg
.. |darwin-arm64| image:: https://github.com/YosysHQ/oss-cad-suite-build/actions/workflows/darwin-arm64.yml/badge.svg
.. |windows-x64| image:: https://github.com/YosysHQ/oss-cad-suite-build/actions/workflows/windows-x64.yml/badge.svg
.. |linux-arm64| image:: https://github.com/YosysHQ/oss-cad-suite-build/actions/workflows/linux-arm64.yml/badge.svg
Building from source Building from source
~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~

View file

@ -6,22 +6,12 @@ Testing Yosys
Automatic testing Automatic testing
----------------- -----------------
.. only:: html The `Yosys Git repo`_ has automatic testing of builds and running of the
included test suite on both Ubuntu and macOS, as well as across range of
The `Yosys Git repo`_ has automatic testing of builds and running of the compiler versions. For up to date information, including OS versions, refer to
included test suite on the following platforms: `the git actions page`_.
- Ubuntu |test-linux|
- macOS |test-macos|
.. _Yosys Git repo: https://github.com/YosysHQ/yosys .. _Yosys Git repo: https://github.com/YosysHQ/yosys
.. |test-linux| image:: https://github.com/YosysHQ/yosys/actions/workflows/test-linux.yml/badge.svg?branch=main
.. |test-macos| image:: https://github.com/YosysHQ/yosys/actions/workflows/test-macos.yml/badge.svg?branch=main
For up to date information, including OS versions, refer to `the git actions
page`_.
.. _the git actions page: https://github.com/YosysHQ/yosys/actions .. _the git actions page: https://github.com/YosysHQ/yosys/actions
.. todo:: are unit tests currently working .. todo:: are unit tests currently working

View file

@ -0,0 +1,14 @@
--- fstapi.cc
+++ fstapi.cc
@@ -4723,7 +4723,10 @@ if(gzread_pass_status)
hdr_incomplete = (xc->start_time == 0) && (xc->end_time == 0);
fstFread(&dcheck, 8, 1, xc->f);
- xc->double_endian_match = (dcheck == FST_DOUBLE_ENDTEST);
+ /*
+ * Yosys patch: Fix double endian check for i386 targets built in modern gcc
+ */
+ xc->double_endian_match = (dcheck == (double)FST_DOUBLE_ENDTEST);
if(!xc->double_endian_match)
{
union {

View file

@ -19,3 +19,4 @@ patch -p0 < 00_PATCH_win_zlib.patch
patch -p0 < 00_PATCH_win_io.patch patch -p0 < 00_PATCH_win_io.patch
patch -p1 < 00_PATCH_strict_alignment.patch patch -p1 < 00_PATCH_strict_alignment.patch
patch -p0 < 00_PATCH_wx_len_overread.patch patch -p0 < 00_PATCH_wx_len_overread.patch
patch -p0 < 00_PATCH_i386_endian.patch

View file

@ -4723,7 +4723,10 @@ if(gzread_pass_status)
hdr_incomplete = (xc->start_time == 0) && (xc->end_time == 0); hdr_incomplete = (xc->start_time == 0) && (xc->end_time == 0);
fstFread(&dcheck, 8, 1, xc->f); fstFread(&dcheck, 8, 1, xc->f);
xc->double_endian_match = (dcheck == FST_DOUBLE_ENDTEST); /*
* Yosys patch: Fix double endian check for i386 targets built in modern gcc
*/
xc->double_endian_match = (dcheck == (double)FST_DOUBLE_ENDTEST);
if(!xc->double_endian_match) if(!xc->double_endian_match)
{ {
union { union {