2024-06-08 23:36:50 +00:00
|
|
|
# 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
|
|
|
|
|
2022-12-23 23:12:17 +00:00
|
|
|
cd install
|
|
|
|
$Env:VERILATOR_ROOT=$PWD
|
|
|
|
cd examples/cmake_tracing_c
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
2023-02-03 23:47:54 +00:00
|
|
|
cmake --build . --config Release -j 3
|
2024-06-08 23:36:50 +00:00
|
|
|
|
2024-06-08 23:37:31 +00:00
|
|
|
# TODO put this back in, see issue# 5163
|
|
|
|
# Release/example.exe
|
2024-06-08 23:36:50 +00:00
|
|
|
|
2022-12-23 23:12:17 +00:00
|
|
|
cd ..
|
|
|
|
Remove-Item -path build -recurse
|