Skip to content

Commit bc37966

Browse files
committed
Deprecated exportFile/importFile in favor of exportDir/importDir
1 parent 319d045 commit bc37966

File tree

8 files changed

+212
-69
lines changed

8 files changed

+212
-69
lines changed

rpc/commands/commands.pb.go

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

rpc/commands/compile.pb.go

Lines changed: 40 additions & 30 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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +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-
string exportFile = 13; // The compiled binary is written to this file
37+
string exportFile = 13 [deprecated = true]; // DEPRECATED: use exportDir instead
3838
int32 jobs = 14; // The max number of concurrent compiler instances to run (as make -jx)
3939
repeated string libraries = 15; // List of custom libraries paths separated by commas. Or can be used multiple times for multiple libraries paths.
4040
bool optimizeForDebug = 16; // Optimize compile output for debug, not for release
4141
bool dryRun = 17; // When set to true the compiled binary will not be copied to the export directory
42+
string export_dir = 18; // Optional: save the build artifacts in this directory, the directory must exist
4243
}
4344

4445
message CompileResp {

0 commit comments

Comments
 (0)