-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The tool names used to be overly generic ('verilog_lint'), so add the verible prefix to disambiguate them from other tools. Also use dashes instead of underscores because they look prettier :) Since tools are intended to possibly support more languages in the future, we continue with also including 'verilog' in it. (Decision was to keep the language name in the tool rather than have a flag choose the language.) Names are now verible-verilog-lint, verible-verilog-format, ... For backward compatibility: the old names are still present for now: there are short shell-scripts with the old name that invoke the new tools for a transition period (initially silently, later they might start to write a warning message to stderr before being decommissioned after some time). Fixes: #169 PiperOrigin-RevId: 315524811
- Loading branch information
Showing
15 changed files
with
242 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/sh | ||
# Copyright 2020 The Verible Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Adapter script to allow using the legacy name. | ||
# | ||
# Beware, this will go away, please change your scripts to call the new stable | ||
# name verible-verilog-diff instead. | ||
exec "$(dirname $(realpath $0))/verible-verilog-diff" "$@" |
Oops, something went wrong.