Alex D
Alex D
yes, it should have extra "\\" in regex.
I would use LLVM internals for it for example https://llvm.org/docs/Atomics.html
can u show me the source code, pls
added support for VSCode ```TypeScript tsc --new Test1 cd Test1 code ```
> I'm sorry that there is already so much issues. There's another one that the compiler adds one more '_' to the functions it searches in static .lib library. I...
probably when casting numN.length into i64 something is not converted right. Try to use i32 or u32 in for size ___cfromCharCode. I remember there were issue with i64 but I...
u need to be careful when u use "Union" types the code ```ts let src: string | 0 = _malloc(size); if (src == 0) throw new bad_alloc(); ``` should be...
```ts type pointer_type = string | Array | Reference; ``` Array type is not "pointer", it is ```struct { int size; any[] data }``` so using "Opaque" which is ```void*```...
TBH, I have not tried it yet but I am sure it is possible, the only thing it is not rested against ARM32. so I would say ARM64 is better...
u need to find correct "triplet" to specify ARM compilation. for example: `arm-none-eabi`