Skip to content

Commit 9480b48

Browse files
authored
fix(benchmarks): use original FunC stdlib in benchmarks (#3214)
* update stdlib.fc to version from ton monorepo
1 parent a41a598 commit 9480b48

File tree

3 files changed

+698
-10
lines changed

3 files changed

+698
-10
lines changed

src/benchmarks/func.build.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ const main = async () => {
55
// Disable version number in packages
66
__DANGER__disableVersionNumber();
77

8-
await allInFolderFunc(__dirname, ["./**/func/**/*.fc"]);
8+
await allInFolderFunc(__dirname, `${__dirname}/../func/stdlib`, [
9+
"./**/func/**/*.fc",
10+
]);
911
};
1012

1113
void main();

0 commit comments

Comments
 (0)