Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/os-fpga/FOEDAG
Framework Open EDA Gui
https://github.com/os-fpga/FOEDAG
os sw
Last synced: about 2 months ago
JSON representation
Framework Open EDA Gui
- Host: GitHub
- URL: https://github.com/os-fpga/FOEDAG
- Owner: os-fpga
- License: other
- Created: 2021-10-04T17:48:45.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-06T13:57:38.000Z (2 months ago)
- Last Synced: 2024-11-06T14:44:32.234Z (2 months ago)
- Topics: os, sw
- Language: C++
- Homepage: https://foedag.readthedocs.io
- Size: 32.5 MB
- Stars: 60
- Watchers: 17
- Forks: 29
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-opensource-hardware - foedag
README
# FOEDAG
[![main](https://github.com/os-fpga/FOEDAG/actions/workflows/main.yml/badge.svg)](https://github.com/os-fpga/FOEDAG/actions/workflows/main.yml)
[![Documentation Status](https://readthedocs.org/projects/foedag/badge/?version=latest)](https://foedag.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://codecov.io/gh/os-fpga/FOEDAG/branch/main/graph/badge.svg?token=J3BBk1po4L)](https://codecov.io/gh/os-fpga/FOEDAG)FOEDAG denotes Qt-based Framework Open EDA Gui
## Documentation
FOEDAG's [full documentation](https://foedag.readthedocs.io/en/latest/) includes tutorials, tool options and contributor guidelines.
## Build instructions
Read [`INSTALL`](INSTALL.md) for more details
```bash
make
or
make debug
or
make release_no_tcmalloc (For no tcmalloc)
make install (/usr/local/bin and /usr/local/lib/foedag by default which requires sudo privilege,
use PREFIX= for alternative locations.)
```
> [!NOTE]
> Default WebEngine based editor, Monaco is not supported on WSL and DOCKER. Use the flag as shown below to revert to Qt based editor, QScintilla.
```bash
make MONACO_EDITOR=0 #Refer the Makefile for usage
```