github-actions[bot] on nightly
elab-vhdl_context: remove cur_s… synth-vhdl_stmts: add comments … synth-vhdl_stmts: avoid a crash… and 1 more (compare)
tgingold on master
elab-vhdl_context: remove cur_s… synth-vhdl_stmts: add comments … synth-vhdl_stmts: avoid a crash… and 1 more (compare)
github-actions[bot] on nightly
vhdl-canon: refactoring. Expor… Add the -Wall flag. synth-vhdl_oper: handle to_stdu… and 7 more (compare)
happy to move this discussion to hdl if it's more appropriate there
@edbordin, I believe that GHDL is the tricky piece. Most other projects are "typical" C/C++/Python tools, so the build and cross-compilation procedures are easier. Hence, it's up to you to discuss it here or in hdl/community. Most of the interested users do read both channels anyway.
actually there is less then 200MB of libraries and other resources taken from Ubuntu 20.04
@mmicko maybe the difference is because I looked at the size of the lib
from oss-cad-suite-linux-x64-20210524
after extracting it? That's 1.06GB.
and plain docker for it is 134MB without any needed library, so docker image would probably be larger then distribution files.
I would say the size using containers would be the same, or the difference would be negligible. My concern is not the size, but the duplication of environment with a hand-made isolation procedure. In fpga-toolchain, most tools are compiled statically so that the environment is embedded in each tool. Containers do provide a proven isolation mechanism for system libraries (since that's their main purpose). In oss-cad-suite everything is handled as you would do in a container, an appimage, a flatpak, etc. but then no specific isolation tool is used. As commented in YosysHQ/oss-cad-suite-build#1, that is a lot of work! Containers/appimage/flatpak are non-trivial projects with many developers. oss-cad-suite is an almost single man project.
If you want a hierarchical and fixed development model, your approach is acceptable. You decide which tools to provide, you take care of preparing all of them, your clients stick to the use cases you explicitly support. If they want other use cases, they either improve your bundle or they hire you to do so. However, you will need to develop all the isolation related tweaks yourself, or you will need a significant effort for documenting all of it, so that potential contributors can help. Otherwise, it will be difficult for anyone to add their own additional system tools/libraries that interact with the ones in the bundle.
Moreover, if you wanted to introduce versioning of the tools, so that users could downgrade specific tools in the bundle, that would be something you would need to implement and document yourself. Doing so is already a huge effort even if existing package managers are used.
guess that docker would be nice to have at least for CI usage but to be honest in that case I would for example remove GUI tools which would lower deps and made it much smaller in size.
There are container images for CI usage, others for local usage and others with GUI tools. Size grows, respectively. CI images need to be small, specific and fast. Local images need to be complete and have handy tools. GUI tools need X11, Qt, Gtk... The advantage of containers is that all of those can be provided at the same time, and they can be composed. The outcome is that each user can pick the image that best fits. However, from a maintainer/development point of view, all the users
are using "the same" image. Conceptually, each "collection" in hdl/containers is a single several GB image that is presented in pieces of varying sizes.
See https://hdl.github.io/containers/#_tools_with_gui and https://github.com/ghdl/docker/blob/master/USE_CASES.md#environments-with-guis. Or any of the following gitpods: https://gitpod.io/#https://github.com/cocotb/cocotb, https://gitpod.io/#https://github.com/umarcor/msea.
Note that gitpod uses VSCode or Theia. That is, YosysHQ could provide a custom IDE that any user would launch either in the browser or locally. Moreover, it might be an specific flavour of TerosHDL. I very honestly think that would provide much market value to the product.
Please, do not take any of this as plain criticism. I do care about oss-cad-suite and I do believe it has some very relevant characteristics:
I would love to have GHDL plugin for yosys built and distributed, problem is that it is ADA based, and that is possible to cross compile to other linux variants , but have issue for darwin and windows targets
As commented in YosysHQ/oss-cad-suite-build#1, for distribution on Windows I very strongly recommend using MSYS2. If you don't want users to install MSYS2 explicitly, you can hide it from them with a wrapper. That is what projects Ruby or Qt do. GTKWave provides it too. You don't need to use the upstream recipes if you don't want to, but you can tweak those.
Recently, UCRT64 was added to MSYS2, which complements MINGW32, MINGW64 and CLANG64. UCRT64 should reduce possible corner cases when combining binaries with others built with VS.
For Linux, I avoid cross-compilation by using QEMU along with containers. See dbhi/qus and dbhi/docker. QEMU's user mode does not receive as much love as the system mode; hence, there might be issues with "weird" system signals. However, it works fairly well, and ARM support was improved significantly in these last 2 years. On the other hand, there are no official images for RISC-V yet. @carlosedp is pushing hard in that area: carlosedp/riscv-bringup.
For sure I need to use LLVM based build, but problem in it is that it try to precompile VHDL libraries with created binaries which is not possible for all targets since no QEMU for macOS (darwin)
You have issues for cross-building for macOS on ARM, from a Linux on x86-64?
Would appreciate any help in making minimal ghdl plugin build that can work on all targets
The plugin is not an issue. You can embed it into yosys. The plugin depends on the libghdl shared library. That is neither an issue, since you can build it. The problem is that almost all VHDL designs do depend on the standard and IEEE libraries. That's why, in practice, ghdl-yosys-plugin is said to depend on GHDL (on the installation, no the binary).
Theoretically, I'd say you could avoid building the libraries by providing an specific target to make
. Then you would need to bundle GHDL, the shared libs, the headers, the includes and the VHDL sources of the libraries. Last, you would need to provide an script for building the libraries, similar to https://github.com/ghdl/ghdl/tree/master/scripts/vendors, which users would need to run once after extracting the bundle. However, I don't think anyone used that workflow in practice...
Also apologize if it sounded for a time that I am not listening, it was more pressure to finish things and have it ready for customers, but keeping community in mind as well.
It's ok. The pressure is very different since you want to provide an specific set of tools on some specific platforms for some specific users in a given timeframe. Conversely, in hdl/containers and hdl/MINGW-packages there is no specific set of tools, platforms, users or timeframe. That is the point: to use the canonical solutions, even if it takes longer to achieve a complete solution. That is because no one is explicitly funding those solutions, so the time that can be demanded is zero. Well, I must say that Google is donating a container registry with "unlimited" resources since a couple of days ago. I need to start using it, tho.
I am pretty sure there are cross-compilers for the windows targets.
@tgingold maybe you mean https://github.com/hackfin/ghdl-cross.mk ? I think that is different. That generates a GHDL to be executed on Linux, which will produce simulation models for Windows. But GHDL itself is not cross-compiled.
@mmicko, absolutely no pressure or rush at all. Having a solid and stable open source EDA ecosystem is a mid-long term project that requires a lot of people to coordinate. We will get there, step by step.
Hi everyone!
I am trying to install ghdl-ls on my WSL Ubuntu 18.04. Everything looks fine, but when I am calling ghdl-ls
I got following:
Traceback (most recent call last):
File "/home/arnfol/anaconda3/bin/ghdl-ls", line 5, in <module>
from pyGHDL.cli.lsp import main
File "/home/arnfol/anaconda3/lib/python3.8/site-packages/pyGHDL/cli/lsp.py", line 44, in <module>
import pyGHDL.libghdl as libghdl
File "/home/arnfol/anaconda3/lib/python3.8/site-packages/pyGHDL/libghdl/__init__.py", line 149, in <module>
libghdl = _initialize()
File "/home/arnfol/anaconda3/lib/python3.8/site-packages/pyGHDL/libghdl/__init__.py", line 131, in _initialize
_libghdl_path = _get_libghdl_path()
File "/home/arnfol/anaconda3/lib/python3.8/site-packages/pyGHDL/libghdl/__init__.py", line 126, in _get_libghdl_path
raise Exception("Cannot find libghdl {}".format(basename))
Exception: Cannot find libghdl libghdl-2_0_0_dev.so
Here is my installation script:
#!/usr/bin/env bash
sudo apt-get install -y libz-dev
sudo apt-get install -y gcc gnat
# get & install GHDL
git clone https://github.com/ghdl/ghdl.git
cd ghdl
mkdir build && cd build
../configure --prefix=/opt/ghdl
make && make install
# install PyGHDL
cd ..
pip3 install .
What am I doing wrong?
/opt/ghdl/lib/libghdl-2_0_0_dev.so
and here is my ghdl --dispconfig
output:command_name: /opt/ghdl/bin/ghdl
command line prefix (--PREFIX): (not set)
environment prefix (GHDL_PREFIX): (not set)
exec prefix (from program name): /opt/ghdl
library prefix: /opt/ghdl/lib/ghdl
library directory: /opt/ghdl/lib/ghdl
default library paths:
/opt/ghdl/lib/ghdl/ieee/v93/
/opt/ghdl/lib/ghdl/
Locate the directory where the shared library is installed.
Search order:
GHDL_PREFIX
- directory (prefix) of the vhdl libraries.VUNIT_GHDL_PATH
- path of theghdl
binary when using VUnit.GHDL
- name of, or path to theghdl
binary.- Try within
libghdl/
Python installation.- Try when running from the build directory.
GHDL_PREFIX=/opt/ghdl/lib/ ghdl-ls
cause the same error
GHDL=/opt/ghdl/bin/ghdl ghdl-ls
?
GHDL_PREFIX=/opt/ghdl/lib/ghdl ghdl-ls