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
{{ message }}
This repository was archived by the owner on Dec 31, 2025. It is now read-only.
cd out/Release # so you can get the libnode.dll & libnode.lib, windows need this two files.
61
62
```
62
63
63
-
### Linux20
64
+
### Linux v22
64
65
65
66
1. You need to install docker first.
66
67
2. Create a normal user and set up home directories and passwd.
67
68
3. Add this user to the docker group.
68
69
1.`sudo usermod -aG docker YOUR_NORMAL_USERNAME`
69
70
70
-
> We use [unofficial-builds](https://github.com/nodejs/unofficial-builds) build x86, which build symbols without the c++11_ABI, see `CMakeLists.txt` line 54.
2. Find `deps/v8/src/compiler/backend/ia32/instruction-selector-ia32.cc` in Node.js source code and replace globally:
112
-
113
-
```cpp
114
-
usingnode_t = Adapter::node_t
115
-
```
116
-
117
-
with:
118
-
119
-
```cpp
120
-
usingnode_t = typename Adapter::node_t
121
-
```
122
-
123
-
3. compilation as before.
124
-
125
-
### Linux22
126
-
127
-
1. Clone from [our forked unofficial repository](https://github.com/dockfries/unofficial-builds) (not the original one), then follow similar steps as above.
128
-
129
-
2. Execute:
130
-
131
-
```bash
132
-
bin/local_build.sh -r x86_22 -v v22.17.0
133
-
```
134
-
135
-
> Note: Use `x86_22` instead of `x86` for `-r` parameter
136
-
> For version 22, `.so` files end with `127`
137
-
138
101
## Credits
139
102
140
-
-[Damo](https://github.com/damopewpew) for his [samp.js project](https://github.com/damopewpew/samp.js). 80% of native caller code is from that project, cause I didn't want to do all the args processing by myself when there's already something useful out there!
141
-
-[Hual](https://github.com/Hual/) for some v8 tips he gave me
103
+
-[Damo](https://github.com/damopewpew) for his [samp.js project](https://github.com/damopewpew/samp.js).
104
+
-[Hual](https://github.com/Hual/) for some v8 tips
142
105
-[Graber](https://github.com/AGraber) for a few suggestions and helpful advices
143
106
-[pkfln (peek)](https://github.com/pkfln) for fixing and adding some samp callbacks/events in samp-node, and making [@sa-mp/node](https://github.com/samp-dev/node)
144
107
-[polygxn](https://github.com/polygxn) for his changes in README.md which don't exist anymore
145
108
-[JustMichael (ADRFranklin)](https://github.com/ADRFranklin) for his contributions, including fixes, features, and any others he's going to do in future
146
109
-[Alexander Plutalov (plutalov)](https://github.com/plutalov) for fixing long time crash issues and not having context running properly
0 commit comments