diff options
author | 2022-01-24 19:12:58 -0800 | |
---|---|---|
committer | 2022-01-24 19:12:58 -0800 | |
commit | ecea12d2061f3508b9e5686d605ab7e6e6ac932e (patch) | |
tree | 27484c7d7ebc060ebee1365d0eac84836d0cb616 /build.zig | |
parent | 61d1c7b6b2efadad4e6bb27ad72b2fb45d0f5e9a (diff) | |
download | bun-ecea12d2061f3508b9e5686d605ab7e6e6ac932e.tar.gz bun-ecea12d2061f3508b9e5686d605ab7e6e6ac932e.tar.zst bun-ecea12d2061f3508b9e5686d605ab7e6e6ac932e.zip |
No io_uring for Ubuntu 20.04
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -94,6 +94,14 @@ fn addInternalPackages(step: *std.build.LibExeObjStep, _: std.mem.Allocator, tar .name = "javascript_core", .path = pkgPath("src/jsc.zig"), }; + + var analytics: std.build.Pkg = .{ + .name = "analytics", + .path = pkgPath("src/analytics.zig"), + }; + + io.dependencies = &.{analytics}; + javascript_core.dependencies = &.{ http, strings, picohttp, io }; http.dependencies = &.{ strings, |