2021-03-22 13:16:25 -05:00
|
|
|
Creating the Visual Studio Template Project
|
|
|
|
===========================================
|
|
|
|
|
|
|
|
1. Create an empty Visual C++ Win32 Console App project
|
|
|
|
|
|
|
|
Microsoft Visual Studio Express 2013 for Windows Desktop
|
|
|
|
Open New Project Wizard (File -> New Project..)
|
|
|
|
|
|
|
|
Project Name: YosysVS
|
|
|
|
Solution Name: YosysVS
|
|
|
|
[X] Create directory for solution
|
|
|
|
[ ] Add to source control
|
|
|
|
|
|
|
|
[X] Console applications
|
|
|
|
[X] Empty Project
|
|
|
|
[ ] SDL checks
|
|
|
|
|
|
|
|
2. Open YosysVS Project Properties
|
|
|
|
|
|
|
|
Select Configuration: All Configurations
|
|
|
|
|
|
|
|
C/C++ -> General -> Additional Include Directories
|
|
|
|
Add: ..\yosys
|
|
|
|
|
|
|
|
C/C++ -> Preprocessor -> Preprocessor Definitions
|
|
|
|
Add: _YOSYS_;_CRT_SECURE_NO_WARNINGS
|
|
|
|
|
|
|
|
3. Resulting file system tree:
|
|
|
|
|
|
|
|
YosysVS/
|
|
|
|
YosysVS/YosysVS
|
|
|
|
YosysVS/YosysVS/YosysVS.vcxproj
|
|
|
|
YosysVS/YosysVS/YosysVS.vcxproj.filters
|
|
|
|
YosysVS/YosysVS.sdf
|
|
|
|
YosysVS/YosysVS.sln
|
|
|
|
YosysVS/YosysVS.v12.suo
|
|
|
|
|
|
|
|
4. Zip YosysVS as YosysVS-Tpl-v1.zip
|
|
|
|
|
2022-01-17 03:07:56 -06:00
|
|
|
Compiling with Visual Studio
|
|
|
|
============================
|
|
|
|
|
|
|
|
Visual Studio builds are not directly supported by build scripts, but they are still possible.
|
|
|
|
|
|
|
|
1. Easy way
|
|
|
|
|
2024-03-23 23:41:40 -05:00
|
|
|
- Go to https://github.com/YosysHQ/yosys/actions/workflows/vs.yml?query=branch%3Amain
|
2022-01-17 06:11:15 -06:00
|
|
|
- Click on the most recent completed run
|
2022-01-17 03:07:56 -06:00
|
|
|
- In Artifacts region find vcxsrc and click on it to download
|
|
|
|
- Unpack downloaded ZIP file
|
|
|
|
- Open YosysVS.sln with Visual Studio
|
|
|
|
|
|
|
|
2. Using WSL or MSYS2
|
|
|
|
|
|
|
|
- Make sure to have make, python3 and git available
|
|
|
|
- Git clone yosys repository
|
|
|
|
- Execute ```make vcxsrc YOSYS_VER=latest```
|
|
|
|
- File yosys-win32-vcxsrc-latest.zip will be created
|
|
|
|
- Transfer that file to location visible by Windows application
|
|
|
|
- Unpack ZIP
|
|
|
|
- Open YosysVS.sln with Visual Studio
|
|
|
|
|
2021-03-22 13:16:25 -05:00
|
|
|
Cross-Building for Windows with MXE
|
|
|
|
===================================
|
|
|
|
|
|
|
|
Check http://mxe.cc/#requirements and install all missing requirements.
|
|
|
|
|
|
|
|
As root (or other user with write access to /usr/local/src):
|
|
|
|
|
|
|
|
cd /usr/local/src
|
|
|
|
git clone https://github.com/mxe/mxe.git
|
|
|
|
cd mxe
|
|
|
|
|
|
|
|
make -j$(nproc) MXE_PLUGIN_DIRS="plugins/tcl.tk" \
|
|
|
|
MXE_TARGETS="i686-w64-mingw32.static" \
|
|
|
|
gcc tcl readline
|
|
|
|
|
|
|
|
Then as regular user in some directory where you build stuff:
|
|
|
|
|
2021-06-07 17:39:36 -05:00
|
|
|
git clone https://github.com/YosysHQ/yosys.git yosys-win32
|
2021-03-22 13:16:25 -05:00
|
|
|
cd yosys-win32
|
|
|
|
make config-mxe
|
2021-06-07 17:39:36 -05:00
|
|
|
make -j$(nproc) mxebin
|