mirror of
https://github.com/verilator/verilator.git
synced 2024-12-28 18:27:34 +00:00
27 lines
698 B
PowerShell
27 lines
698 B
PowerShell
# DESCRIPTION: Verilator: CI Windows Power Shell - Verilate a test
|
|
#
|
|
# Copyright 2024 by Wilson Snyder. This program is free software; you
|
|
# can redistribute it and/or modify it under the terms of either the GNU
|
|
# Lesser General Public License Version 3 or the Perl Artistic License
|
|
# Version 2.0.
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
################################################################################
|
|
|
|
|
|
Set-PSDebug -Trace 1
|
|
|
|
cd install
|
|
$Env:VERILATOR_ROOT=$PWD
|
|
cd examples/cmake_tracing_c
|
|
mkdir build
|
|
cd build
|
|
cmake ..
|
|
cmake --build . --config Release -j 3
|
|
|
|
# TODO put this back in, see issue# 5163
|
|
# Release/example.exe
|
|
|
|
cd ..
|
|
Remove-Item -path build -recurse
|