-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1d8ebb
commit cc23ea2
Showing
9 changed files
with
222 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# VS Code Compatibility | ||
|
||
Upgrading VS Code may potentially introduce some issues that could result in anomalies with the compilation or debugging functions of our extension. In such cases, you can consider downgrading VS Code as a workaround. We have summarized a list of recent stable versions of VS Code for your reference. | ||
|
||
| VS Code | GRPC Debug | CLI Debug | Compilation | Online Editing | | ||
| --------- | ------------- | ----------- | ----------- | -------------- | | ||
| 1.81.0 | √ | √ | √ | √ | | ||
| 1.80.2 | √ | × | √ | √ | | ||
| 1.79.2 | √ | × | √ | √ | | ||
| 1.78.2 | √ | √ | √ | √ | | ||
| 1.77.3 | √ | √ | √ | √ | | ||
| 1.76.2 | √ | √ | √ | √ | | ||
| 1.75.1 | √ | √ | √ | √ | | ||
|
||
**Note**: Please refer [Debugging](./Debugging.md) to find out suitable UniVerse / UniData for debugging features. |
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,34 @@ | ||
|
||
## Configure Debugging Binaries in UniVerse | ||
|
||
Please check whether this feature is supported for your U2 server and platform according [this page](./DAPRelease.md). | ||
|
||
- If yes, you need download and configure related binaries. | ||
|
||
- If not, do not change your environment. | ||
|
||
To configure the debugging related binaries, please follow below steps. | ||
|
||
#### Windows | ||
|
||
1. Copy **dap_agent.exe** and **grpcs.exe** from the package to your UniVerse **bin** folder. E.g., *C:\U2\UV\bin* | ||
|
||
2. Verify whether the unirpcservices file contains **grpcs** service. If **grpcs** service doesn't exist, you must add it manually. Add the new service as shown below to the **unirpcservices** file: | ||
|
||
``` | ||
grpcs <full_path_to_grpcs.exe> * TCP/IP 0 3600 | ||
``` | ||
The 'unirpcservices' file can be found in your U2 server installation folder: for example, **C:\U2\unishared\unirpc\unirpcservices**. | ||
#### Linux | ||
1. Copy **dap_agent** and **grpcs** from the package to your UniVerse **bin** folder. For example, */usr/u2/uv/bin/* | ||
2. Verify whether the **unirpcservices** file contains the **grpcs** service. If the **grpcs** service doesn't exist, you must add it manually. Add the new service as shown below to the **unirpcservices** file: | ||
``` | ||
grpcs <full_path_to_grpcs> * TCP/IP 0 3600 | ||
``` | ||
The **unirpcservices** file can be found in your U2 server installation folder. For example, **/usr/u2/unishared/unirpc/unirpcservices**. |
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 @@ | ||
## Debugging Binaries Releases | ||
|
||
A high-performance debugging feature has been introduced in the 2.2.0 release (and in UniVerse 11.4.1). However, to use this feature, you will need to upgrade UniVerse to version 11.4.1 or higher. If you decide not to upgrade, you can continue using the original debugging feature available on previous versions of the U2 server. | ||
|
||
Below is a detailed breakdown of the information for each release. You can find instructions for configuring the debugging binaries in UniVerse [here](./ConfigDap.md). | ||
|
||
### 2.2.0 | ||
|
||
- This high-performance debugging feature is supported only on UniVerse version 11.4.1 for both Windows and Linux platforms. | ||
- If you are using UniVerse 11.4.1, there is no need to manually download and configure these binaries. They are already included in this version. | ||
- However, please note that this feature and the associated binaries are not supported on any versions previous to UniVerse 11.4.1. | ||
|
||
| UniVerse | Windows | Linux | AIX | | ||
| ------------ | ----------- | ----------- | ----------- | | ||
| 11.4.1 | √ | √ | × | | ||
| < 11.4.1 | × | × | × | | ||
|
||
**Assets** | ||
|
||
(link to github release page) |
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
Oops, something went wrong.