Add rust to build instructions

This commit is contained in:
Yannick Reiß 2023-09-12 23:07:06 +02:00
parent 70356a9e15
commit 7d746cd029
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
1 changed files with 2 additions and 0 deletions

View File

@ -91,6 +91,8 @@ function! Build()
execute 'make' execute 'make'
elseif l:filetype == 'verilog' elseif l:filetype == 'verilog'
execute 'verilator --binary %' execute 'verilator --binary %'
elseif l:filetype == 'rust'
execute 'cargo run'
else else
echo "Unsupported file type: " . l:filetype echo "Unsupported file type: " . l:filetype
endif endif