mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
79 lines
1.9 KiB
Batchfile
79 lines
1.9 KiB
Batchfile
@echo off
|
|
|
|
REM
|
|
REM qucsdigilib.bat - wrapper script for digital modules and libraries
|
|
REM
|
|
REM Copyright (C) 2009, 2011 Stefan Jahn <stefan@lkcc.org>
|
|
REM
|
|
REM This is free software; you can redistribute it and/or modify
|
|
REM it under the terms of the GNU General Public License as published by
|
|
REM the Free Software Foundation; either version 2, or (at your option)
|
|
REM any later version.
|
|
REM
|
|
REM This software is distributed in the hope that it will be useful,
|
|
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
REM GNU General Public License for more details.
|
|
REM
|
|
REM You should have received a copy of the GNU General Public License
|
|
REM along with this package; see the file COPYING. If not, write to
|
|
REM the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
|
|
REM Boston, MA 02110-1301, USA.
|
|
REM
|
|
|
|
if "X%4"=="X" goto usage
|
|
|
|
set NAME=%1
|
|
set DIR=%2
|
|
set ENTITY=%3
|
|
set LIBRARY=%4
|
|
|
|
if not exist "%DIR%" goto nodir
|
|
|
|
cd /d "%DIR%"
|
|
|
|
if not exist %NAME% goto nofile
|
|
|
|
copy %NAME% %ENTITY%.vhdl > NUL
|
|
set NAME=%ENTITY%
|
|
|
|
set CXX=g++
|
|
set CXXFLAGS=-O2 -I"%FREEHDL%/include"
|
|
set AR=ar
|
|
set RANLIB=ranlib
|
|
|
|
set PATH=%PATH%;%FREEHDL%/bin;%MINGWDIR%/bin;%QUCSDIR%/bin
|
|
|
|
echo running C++ conversion...
|
|
freehdl-v2cc -l%LIBRARY% -Lvhdl -L"%FREEHDL%/share/freehdl/lib" -o %NAME%.cc %NAME%.vhdl
|
|
|
|
echo compiling functions...
|
|
%CXX% %CXXFLAGS% -c %NAME%.cc
|
|
|
|
echo copying modules to VHDL directory...
|
|
copy %NAME%.o vhdl\%LIBRARY% > NUL
|
|
|
|
echo updating VHDL library...
|
|
%AR% cru vhdl/lib%LIBRARY%.a vhdl/%LIBRARY%/*.o
|
|
%RANLIB% vhdl/lib%LIBRARY%.a
|
|
|
|
goto end
|
|
|
|
:usage
|
|
echo Usage: %0 "<netlist.txt> <directory> <entity> <library>"
|
|
echo Directory has to contain the file 'netlist.txt'.
|
|
exit /b 1
|
|
goto end
|
|
|
|
:nodir
|
|
echo %DIR%: Not a directory
|
|
exit /b 1
|
|
goto end
|
|
|
|
:nofile
|
|
echo %NAME%: No such file
|
|
exit /b 1
|
|
goto end
|
|
|
|
:end
|