kbkpbot
kbkpbot
Under Ubuntu, has no this bug
The generated response file, `hello.tmp.c.rsp`, need to be encoded in ANSI, not UTF-8 , under windows.
I believe this is a "feature" of the PostgreSQL database: if you wrap a table name in double quotes in an SQL statement, it preserves the original case of the...
Or we can make a checker for this, When user create a v `dll` under windows, the checker will check for `DllMain()` defined in user code. If no, it just...
To enable backtrace, v has to patch too. ``` diff --git a/vlib/v/gen/c/cheaders.v b/vlib/v/gen/c/cheaders.v index 927cf260e..6b06643d6 100644 --- a/vlib/v/gen/c/cheaders.v +++ b/vlib/v/gen/c/cheaders.v @@ -350,9 +350,9 @@ const c_common_macros = ' #undef TCCSKIP...
> Nice! How does the Windows version match up with the others, now? It is ahead, behind, or at parity? v doctor seems has some problem: ```sh D:\v\v\v>v doctor V...
Some db related tests can not passed. ```sh D:\v\v\v>v test vlib\orm ---- Testing... -------------------------------------------------------------------------------------------------------- OK [ 1/22] C: 836.5 ms, R: 190.663 ms vlib/orm/orm_fn_test.v OK [ 2/22] C: 844.3 ms,...
> Definitely different from the Linux x64 version... > > ``` > $ ./tcc.exe -v > tcc version 0.9.28rc 2024-07-31 HEAD@1cee0908 (x86_64 Linux) > $ > ``` Yes, Windows version...
It may due to the `qsort` problem as figure out in PR #24611
> Updated example: > > lib, compile with: `v -shared .v -o lib.so` > > module testdll > > const r = 0.14 > const s = 3 + r...