tcbuilder 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tcbuild.js +2 -1
- package/package.json +1 -1
package/dist/tcbuild.js
CHANGED
|
@@ -243,7 +243,8 @@ process.once('beforeExit', async () => {
|
|
|
243
243
|
const file = group.files[fileName];
|
|
244
244
|
const fileLastExt = fileName.split('.').pop();
|
|
245
245
|
let obj_out = `${build_dir}/${fileName}.o`;
|
|
246
|
-
|
|
246
|
+
if (file.includeInFinalOutput)
|
|
247
|
+
objects += ` ${obj_out}`;
|
|
247
248
|
let final_flags = `${ /* globalSrcFileFlags */''} ${file.flags ?? ''}`;
|
|
248
249
|
for (const ext of fileName.split('.').slice(1)) {
|
|
249
250
|
if (ext.length <= 0)
|