calvin2021y

Results 217 comments of calvin2021y

https://github.com/ldc-developers/ldc/issues/4920

with `SetTargetFPS(60)`, raylib-sidebar-scrolling-container cpu load around `25%`, some time `50%` if there is some action. compare the browser cpu load without action, still much higher.

thanks a lot for the tips. after apply #298 and enable EnableEventWaiting(), build with lto. the cpu load is 5% ~ 20%. in background less than 1%.

Thanks for tips. I am build with ldc `-mtriple=aarch64-unknown-linux-android`, will try `-mcpu/-mattr` options.

hi @kinke The clang use ` --march=armv8-a+crypto` as default arguments for arm64. ldmd2/ldc2 can not support this: `Error: invalid target architecture 'armv8-a+crypto', see -version for a list of supported targets.`...

Thanks for the explain. I can confirm the `v1.40.0-beta4` android aarch64 work with ndk r28-rc2. `--mattr=+v8a,+crypto` also pass the compile.

```sh wamr/core/shared/platform/windows/win_socket.c:186:71: warning: passing 'unsigned int *' to parameter of type 'int *' converts between pointers to integer types with different sign [-Wpointer-sign] 186 | accept(server_sock->raw.socket, (struct sockaddr *)&addr_tmp, &len);...