You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,6 +166,21 @@ Run.
166
166
java [PROGRAM-ID]
167
167
```
168
168
169
+
> **Tip:** When compiling multiple COBOL source files, pass all files to a single `cobj` invocation instead of invoking `cobj` separately for each file. This can significantly reduce the total compilation time.
170
+
>
171
+
> ```bash
172
+
># Recommended: compile all files at once
173
+
> cobj file1.cbl file2.cbl file3.cbl
174
+
>
175
+
># You can also use wildcards
176
+
> cobj *.cbl
177
+
>
178
+
># Not recommended: compile each file separately
179
+
> cobj file1.cbl
180
+
> cobj file2.cbl
181
+
> cobj file3.cbl
182
+
>```
183
+
169
184
## Documentation
170
185
171
186
* [The API reference of the runtime library `libcobj.jar`](https://opensourcecobol.github.io/opensourcecobol4j/javadoc/libcobj/index.html)
0 commit comments