File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,8 @@ there is a fairly good chance this will work out of the box. The required packag
56
56
57
57
** Windows:** If you are building on windows, you may need to install windows-build-tools
58
58
59
+ ** _ Python:_ ** Python 3.12 is not supported yet so you will need a version of python that is lower than 3.12
60
+
59
61
``` bash
60
62
61
63
# using yarn package manager
@@ -64,6 +66,22 @@ yarn global add windows-build-tools
64
66
npm i -g windows-build-tools
65
67
```
66
68
69
+ After you have installed the toolchain, you should be able to build the binaries from source
70
+
71
+ ``` bash
72
+ # configure node-gyp using yarn
73
+ yarn build:bindings:configure
74
+ # or using npm
75
+ npm run build:bindings:configure
76
+
77
+ # compile the binaries using yarn
78
+ yarn build:bindings
79
+ # or using npm
80
+ npm run build:bindings
81
+ ```
82
+
83
+ After the binaries are built, you should see them inside the profiling-node/lib folder.
84
+
67
85
### Prebuilt binaries
68
86
69
87
We currently ship prebuilt binaries for a few of the most common platforms and node versions (v16-22).
You can’t perform that action at this time.
0 commit comments