Skip to content

Commit e18d70e

Browse files
committed
Fix gRPC interface IDs
1 parent 69fd67d commit e18d70e

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

rpc/commands/compile.pb.go

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rpc/commands/compile.proto

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ message CompileReq {
3434
bool verbose = 10; // Turns on verbose mode.
3535
bool quiet = 11; // Suppresses almost every output.
3636
string vidPid = 12; // VID/PID specific build properties.
37-
int32 jobs = 13; // The max number of concurrent compiler instances to run (as `make -jx`). If jobs is set to 0, it will use the number of available CPUs as the maximum.
38-
repeated string libraries = 14; // List of custom libraries paths separated by commas.
39-
bool optimizeForDebug = 15; // Optimize compile output for debug, not for release.
40-
string export_dir = 16; // Optional: save the build artifacts in this directory, the directory must exist.
41-
bool clean = 17; // Optional: cleanup the build folder and do not use any previously cached build
42-
bool export_binaries = 18; // When set to `true` the compiled binary will be copied to the export directory.
37+
int32 jobs = 14; // The max number of concurrent compiler instances to run (as `make -jx`). If jobs is set to 0, it will use the number of available CPUs as the maximum.
38+
repeated string libraries = 15; // List of custom libraries paths separated by commas.
39+
bool optimizeForDebug = 16; // Optimize compile output for debug, not for release.
40+
string export_dir = 17; // Optional: save the build artifacts in this directory, the directory must exist.
41+
bool clean = 18; // Optional: cleanup the build folder and do not use any previously cached build
42+
bool export_binaries = 19; // When set to `true` the compiled binary will be copied to the export directory.
4343
}
4444

4545
message CompileResp {

0 commit comments

Comments
 (0)