Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support sqlite bundle system in windows #878

Closed
bigfoodK opened this issue Jun 28, 2024 · 3 comments
Closed

Support sqlite bundle system in windows #878

bigfoodK opened this issue Jun 28, 2024 · 3 comments
Assignees
Labels
namui This issue is for namui engine

Comments

@bigfoodK
Copy link
Contributor

#877 (comment)

@bigfoodK bigfoodK added the namui This issue is for namui engine label Jun 28, 2024
@bigfoodK bigfoodK assigned bigfoodK and unassigned bigfoodK Jun 28, 2024
@bigfoodK
Copy link
Contributor Author

warning: [email protected]: In file included from sqlite3/sqlite3.c:29461:
warning: [email protected]: /home/bigfood/.cache/cargo-xwin/xwin/sdk/include/um/windows.h(1,10): fatal error: 'winapifamily.h' file not found
warning: [email protected]: #include <winapifamily.h>
warning: [email protected]:          ^~~~~~~~~~~~~~~~
warning: [email protected]: 1 error generated.

error: failed to run custom build command for `libsqlite3-sys v0.28.0 (/home/bigfood/programming/namseent/namui/third-party-forks/rusqlite/libsqlite3-sys)`

Caused by:
  process didn't exit successfully: `/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/debug/build/libsqlite3-sys-1e5d83ca5e780324/build-script-build` (exit status: 1)
  --- stdout
  cargo:rerun-if-env-changed=LIBSQLITE3_SYS_USE_PKG_CONFIG
  cargo:include=/home/bigfood/programming/namseent/namui/third-party-forks/rusqlite/libsqlite3-sys/sqlite3
  cargo:rerun-if-changed=sqlite3/sqlite3.c
  cargo:rerun-if-changed=sqlite3/wasm32-wasi-vfs.c
  cargo:rerun-if-env-changed=SQLITE_MAX_VARIABLE_NUMBER
  cargo:rerun-if-env-changed=SQLITE_MAX_EXPR_DEPTH
  cargo:rerun-if-env-changed=SQLITE_MAX_COLUMN
  cargo:rerun-if-env-changed=LIBSQLITE3_FLAGS
  OUT_DIR = Some(/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/build/libsqlite3-sys-0aefee2f91e45580/out)
  TARGET = Some(x86_64-pc-windows-msvc)
  OPT_LEVEL = Some(2)
  HOST = Some(x86_64-unknown-linux-gnu)
  cargo:rerun-if-env-changed=VCINSTALLDIR
  VCINSTALLDIR = None
  cargo:rerun-if-env-changed=CC_x86_64-pc-windows-msvc
  CC_x86_64-pc-windows-msvc = None
  cargo:rerun-if-env-changed=CC_x86_64_pc_windows_msvc
  CC_x86_64_pc_windows_msvc = Some(clang-cl)
  RUSTC_WRAPPER = None
  cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT
  cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
  CRATE_CC_NO_DEFAULTS = None
  CARGO_CFG_TARGET_FEATURE = Some(cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,sse4.2,ssse3)
  DEBUG = Some(true)
  cargo:rerun-if-env-changed=CFLAGS_x86_64-pc-windows-msvc
  CFLAGS_x86_64-pc-windows-msvc = None
  cargo:rerun-if-env-changed=CFLAGS_x86_64_pc_windows_msvc
  CFLAGS_x86_64_pc_windows_msvc = Some(--target=x86_64-pc-windows-msvc -Wno-unused-command-line-argument -fuse-ld=lld-link /imsvc/home/bigfood/.cache/cargo-xwin/xwin/crt/include /imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/ucrt /imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/um /imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/shared  )
  cargo:warning=In file included from sqlite3/sqlite3.c:29461:
  cargo:warning=/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/um/windows.h(1,10): fatal error: 'winapifamily.h' file not found
  cargo:warning=#include <winapifamily.h>
  cargo:warning=         ^~~~~~~~~~~~~~~~
  cargo:warning=1 error generated.

  --- stderr


  error occurred: Command "clang-cl" "-nologo" "-MD" "-O2" "-Z7" "-Brepro" "-m64" "--target=x86_64-pc-windows-msvc" "-Wno-unused-command-line-argument" "-fuse-ld=lld-link" "/imsvc/home/bigfood/.cache/cargo-xwin/xwin/crt/include" "/imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/ucrt" "/imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/um" "/imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/shared" "-DSQLITE_CORE" "-DSQLITE_DEFAULT_FOREIGN_KEYS=1" "-DSQLITE_ENABLE_API_ARMOR" "-DSQLITE_ENABLE_COLUMN_METADATA" "-DSQLITE_ENABLE_DBSTAT_VTAB" "-DSQLITE_ENABLE_FTS3" "-DSQLITE_ENABLE_FTS3_PARENTHESIS" "-DSQLITE_ENABLE_FTS5" "-DSQLITE_ENABLE_JSON1" "-DSQLITE_ENABLE_LOAD_EXTENSION=1" "-DSQLITE_ENABLE_MEMORY_MANAGEMENT" "-DSQLITE_ENABLE_RTREE" "-DSQLITE_ENABLE_STAT2" "-DSQLITE_ENABLE_STAT4" "-DSQLITE_SOUNDEX" "-DSQLITE_THREADSAFE=1" "-DSQLITE_USE_URI" "-DHAVE_USLEEP=1" "-D_POSIX_THREAD_SAFE_FUNCTIONS" "-Fo/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/build/libsqlite3-sys-0aefee2f91e45580/out/0343851c9008f270-sqlite3.o" "-c" "--" "sqlite3/sqlite3.c" with args clang-cl did not execute successfully (status code exit status: 1).

@bigfoodK
Copy link
Contributor Author

bigfoodK commented Jun 29, 2024

warning: [email protected]: In file included from sqlite3/sqlite3.c:29461:
warning: [email protected]: /home/bigfood/.cache/cargo-xwin/xwin/sdk/include/um/windows.h(1,10): fatal error: 'winapifamily.h' file not found
warning: [email protected]: #include <winapifamily.h>
warning: [email protected]:          ^~~~~~~~~~~~~~~~
warning: [email protected]: 1 error generated.

error: failed to run custom build command for `libsqlite3-sys v0.28.0 (/home/bigfood/programming/namseent/namui/third-party-forks/rusqlite/libsqlite3-sys)`

Caused by:
  process didn't exit successfully: `/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/debug/build/libsqlite3-sys-1e5d83ca5e780324/build-script-build` (exit status: 1)
  --- stdout
  cargo:rerun-if-env-changed=LIBSQLITE3_SYS_USE_PKG_CONFIG
  cargo:include=/home/bigfood/programming/namseent/namui/third-party-forks/rusqlite/libsqlite3-sys/sqlite3
  cargo:rerun-if-changed=sqlite3/sqlite3.c
  cargo:rerun-if-changed=sqlite3/wasm32-wasi-vfs.c
  cargo:rerun-if-env-changed=SQLITE_MAX_VARIABLE_NUMBER
  cargo:rerun-if-env-changed=SQLITE_MAX_EXPR_DEPTH
  cargo:rerun-if-env-changed=SQLITE_MAX_COLUMN
  cargo:rerun-if-env-changed=LIBSQLITE3_FLAGS
  OUT_DIR = Some(/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/build/libsqlite3-sys-0aefee2f91e45580/out)
  TARGET = Some(x86_64-pc-windows-msvc)
  OPT_LEVEL = Some(2)
  HOST = Some(x86_64-unknown-linux-gnu)
  cargo:rerun-if-env-changed=VCINSTALLDIR
  VCINSTALLDIR = None
  cargo:rerun-if-env-changed=CC_x86_64-pc-windows-msvc
  CC_x86_64-pc-windows-msvc = None
  cargo:rerun-if-env-changed=CC_x86_64_pc_windows_msvc
  CC_x86_64_pc_windows_msvc = Some(clang-cl)
  RUSTC_WRAPPER = None
  cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT
  cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS
  CRATE_CC_NO_DEFAULTS = None
  CARGO_CFG_TARGET_FEATURE = Some(cmpxchg16b,fxsr,sse,sse2,sse3,sse4.1,sse4.2,ssse3)
  DEBUG = Some(true)
  cargo:rerun-if-env-changed=CFLAGS_x86_64-pc-windows-msvc
  CFLAGS_x86_64-pc-windows-msvc = None
  cargo:rerun-if-env-changed=CFLAGS_x86_64_pc_windows_msvc
  CFLAGS_x86_64_pc_windows_msvc = Some(--target=x86_64-pc-windows-msvc -Wno-unused-command-line-argument -fuse-ld=lld-link /imsvc/home/bigfood/.cache/cargo-xwin/xwin/crt/include /imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/ucrt /imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/um /imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/shared  )
  cargo:warning=In file included from sqlite3/sqlite3.c:29461:
  cargo:warning=/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/um/windows.h(1,10): fatal error: 'winapifamily.h' file not found
  cargo:warning=#include <winapifamily.h>
  cargo:warning=         ^~~~~~~~~~~~~~~~
  cargo:warning=1 error generated.

  --- stderr


  error occurred: Command "clang-cl" "-nologo" "-MD" "-O2" "-Z7" "-Brepro" "-m64" "--target=x86_64-pc-windows-msvc" "-Wno-unused-command-line-argument" "-fuse-ld=lld-link" "/imsvc/home/bigfood/.cache/cargo-xwin/xwin/crt/include" "/imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/ucrt" "/imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/um" "/imsvc/home/bigfood/.cache/cargo-xwin/xwin/sdk/include/shared" "-DSQLITE_CORE" "-DSQLITE_DEFAULT_FOREIGN_KEYS=1" "-DSQLITE_ENABLE_API_ARMOR" "-DSQLITE_ENABLE_COLUMN_METADATA" "-DSQLITE_ENABLE_DBSTAT_VTAB" "-DSQLITE_ENABLE_FTS3" "-DSQLITE_ENABLE_FTS3_PARENTHESIS" "-DSQLITE_ENABLE_FTS5" "-DSQLITE_ENABLE_JSON1" "-DSQLITE_ENABLE_LOAD_EXTENSION=1" "-DSQLITE_ENABLE_MEMORY_MANAGEMENT" "-DSQLITE_ENABLE_RTREE" "-DSQLITE_ENABLE_STAT2" "-DSQLITE_ENABLE_STAT4" "-DSQLITE_SOUNDEX" "-DSQLITE_THREADSAFE=1" "-DSQLITE_USE_URI" "-DHAVE_USLEEP=1" "-D_POSIX_THREAD_SAFE_FUNCTIONS" "-Fo/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/build/libsqlite3-sys-0aefee2f91e45580/out/0343851c9008f270-sqlite3.o" "-c" "--" "sqlite3/sqlite3.c" with args clang-cl did not execute successfully (status code exit status: 1).

When using cargo-xwin version 16, winapifamily.h exists but failed to build skia.

error: linking with `lld-link` failed: exit status: 1
      |
      = note: LC_ALL=\"C\" PATH=\"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/bin:/home/bigfood/.vscode-server/cli/servers/Stable-5437499feb04f7a586f677b155b039bc2b3669eb/server/bin/remote-cli:/home/bigfood/.cargo/bin:/home/bigfood/.nvm/versions/node/v22.2.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/bigfood/.cache/cargo-xwin\" VSLANG=\"1033\" \"lld-link\" \"-flavor\" \"link\" \"/NOLOGO\" \"/tmp/rustcZod6wc/symbols.o\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/namui_runtime_x86_64_pc_windows_msvc.2al8e9dclxwectr3.rcgu.o\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/namui_runtime_x86_64_pc_windows_msvc.49c5fghyydnxmnn5.rcgu.o\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/namui_runtime_x86_64_pc_windows_msvc.tgfuvgtj7v1r578.rcgu.o\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/namui_runtime_x86_64_pc_windows_msvc.4opr3dbdhhjmvl2l.rcgu.o\" \"/LIBPATH:/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps\" \"/LIBPATH:/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/debug/deps\" \"/LIBPATH:/home/bigfood/.cache/cargo-xwin/xwin/crt/lib/x86_64\" \"/LIBPATH:/home/bigfood/.cache/cargo-xwin/xwin/sdk/lib/um/x86_64\" \"/LIBPATH:/home/bigfood/.cache/cargo-xwin/xwin/sdk/lib/ucrt/x86_64\" \"/LIBPATH:/home/bigfood/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.52.5/lib\" \"/LIBPATH:/home/bigfood/programming/namseent/namui/rust-ffmpeg-sys/ffmpeg/x86_64-pc-windows-msvc/lib\" \"/LIBPATH:/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/build/skia-bindings-0bb3f57d5741b933/out/skia\" \"/LIBPATH:/home/bigfood/.cargo/registry/src/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.48.5/lib\" \"/LIBPATH:/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/build/libsqlite3-sys-0aefee2f91e45580/out\" \"/LIBPATH:/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/build/libmimalloc-sys-0359676820f145bb/out\" \"/LIBPATH:/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libimage_load_background-ec4040027e5753ef.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnamui-acec7f701bc76a67.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnamui_drawer-71fbcf53d12ebc10.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwasapi-e309b7dbaa6c61ff.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows-296dbdbbbca349fc.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows_core-951252cf9fc913e7.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwidestring-5cf4924727a257eb.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libffmpeg_next-d983d1e3cec36289.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libffmpeg_sys_next-e264162c9f1710ce.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libbitflags-8af3a4d56ea4fe56.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libserde_json-fc56d292adc54f7c.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libopener-1a7265f2a48146b2.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnormpath-3e3ec78ed60d6518.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfutures-908727f922158584.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfutures_executor-d12ce972d5639dcd.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libreqwest-ac76690759b322ff.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/librustls_pemfile-c5204d6151c55708.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/librustls_pki_types-be11c53eeeb288b7.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libserde_urlencoded-8d621eae568ac175.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libryu-b1d52e4fa9739d47.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libbase64-29f644e4954caf0f.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwinreg-62576d34aad44ad0.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libipnet-46618beafe762a1a.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhyper_tls-43c6817148a4f984.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtokio_native_tls-01360fe9c92d0a01.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libmime-dc0468dd0f9e6f2d.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libencoding_rs-9487b920f0538795.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnative_tls-05c613ee6e9b4d8e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libschannel-d859def39ae9a04e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhyper_util-7b69026bad5519f0.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtower-a5b702516ecf3231.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libpin_project-1fbe6096b429e117.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtower_layer-9d25b384b6793d9e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtower_service-76d3e9b722a6f396.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhyper-3861fcb796f9bf20.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwant-9de3689363ea10de.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtry_lock-8a3c9cded52b06cb.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhttparse-9c32536eac0187a3.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libh2-f39f1343dc28d5cd.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtracing-59bf00c9a2f7ef13.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtracing_core-7e2f610ca0311382.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libatomic_waker-95289917704be255.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtokio_util-a6267e7482c516f5.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtokio-3267708fa87a003e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libsocket2-91b95d0c9cfff3e0.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows_sys-a5bf3dc51597cfc7.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libmio-bc89ff2683e1a947.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhttp_body_util-17d9959f71b1ccaf.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfutures_util-5bdc04786ca6905a.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libmemchr-9fe097323b5c10c7.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfutures_io-32bf282b8a0a41d0.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libslab-b0ad50fb4678bf68.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfutures_channel-9974b46f01464ec9.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfutures_sink-aad3b02ae2459bc5.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfutures_task-f7f92aeb94729126.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libpin_utils-3c586fa18ab07a8c.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhttp_body-930f269e79006208.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfutures_core-f001c171bb6126ac.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhttp-0f3b17651284e5d3.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libitoa-a116468ef70e1b84.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfnv-f5beb17da0def71e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/librusqlite-e2e7e15c4b9df6fb.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libsmallvec-9b43a451f12c1046.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfallible_streaming_iterator-ab7b0d8de342732c.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libfallible_iterator-24e5a4c4ec651a90.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhashlink-3cc14bc320807c33.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liblibsqlite3_sys-e9c2d1b40b73f5ad.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/librand-3b7e7ceb51b8e2d0.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/librand_chacha-66c2187c741ed01a.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libppv_lite86-343a42bf94d1eb43.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/librand_core-415828623ed8967b.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnamui_hooks-30141fe345647828.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/librustc_hash-ab52d8fbc23a56b5.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libelsa-ad099f4fd4f8a51e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libindexmap-0a90eea76c0a6436.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libequivalent-a2f8a563d64a5ba3.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liburl-86a467771cbae976.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libidna-04e0efc3b57411fb.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libunicode_normalization-8cf1e2d93102df6d.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtinyvec-086c52858c15f8b2.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtinyvec_macros-854fc39cb99e9c1d.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libunicode_bidi-eced7e5d513f33bf.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libform_urlencoded-09701ab4bf722167.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libpercent_encoding-8d2e8b013d0b16b9.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnamui_skia-0b782c73be45547f.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwinit-34062c80ed50d9da.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libcursor_icon-0d78e70eb98ed765.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows_sys-91fb0b40f7dfdc8b.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows_targets-9b5371edd8fd32f1.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libsmol_str-b339ff59d01ca107.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libraw_window_handle-56b07a58110c3533.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liblog-2cee28f5fd27606c.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtokio-b43cc4338eac83f5.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnum_cpus-9158e1085d566d11.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libbytes-eaece1b789b901dd.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libpin_project_lite-446b1d28fd95654e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libunicode_segmentation-4a9bf7cc86614d20.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libtextwrap-34daa4fd771eefef.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libunicode_linebreak-7ec243da815d4bad.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libunicode_width-7ff1c6cde87876db.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libsmawk-14c46da0b0f9cfdd.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnamui_type-894da663488a50dc.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libskia_safe-318a3bcf4aa62c54.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows-093f0f6f744a8ab0.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows_core-afd0a8c9e18e2260.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows_result-4ae0f2bd547811b8.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libwindows_targets-355ab6893d487211.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libskia_bindings-e58a181fffedc560.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liblazy_static-5b6e50f0f6061d14.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libbitflags-cd018207577acff9.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liblru-aecc2ab446646943.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhashbrown-426380eac6e701d0.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libahash-1a6ebb0455526a4e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libonce_cell-6d61257b94619740.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libzerocopy-fe301796e2851eae.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liballocator_api2-5e385b95fed7c8ff.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libpostcard-046592299deca4bd.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libembedded_io-0b32fe142d282eca.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libheapless-36fe613a5a952e56.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libstable_deref_trait-1636f6783a06e731.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libspin-c6796b458c355d70.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liblock_api-774b5f95c6fa4693.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libscopeguard-be364ee7d1ebf38c.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libhash32-a28f470335950695.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libbyteorder-9ffc3317c9604214.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libcobs-96532c9c868a3f30.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libauto_ops-ca8e50508ff6db94.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libuuid-47c9d134acefdb8d.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libgetrandom-df5e851131b75b49.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libcfg_if-6a029c5589d3a6ca.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libsiphasher-79eeb421c6728ce9.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libanyhow-d53d900e4229079e.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libordered_float-f6452fe962175c68.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libserde-d1b71581be942b25.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnum-f829b6027a32b966.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnum_iter-298bd17f265040d1.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnum_rational-61cd3ee332eaa593.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnum_complex-35b34180b819c762.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnum_bigint-cdc065343cf57ca6.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnum_integer-2c226578701ef318.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libnum_traits-19828ca8327b2303.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/libmimalloc-41aceeeac8584ee7.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liblibmimalloc_sys-c2018703c42fc965.rlib\" \"/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/liblibc-c6c5dd2154b7239a.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/libstd-3f3d3458f17b6f6c.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/libpanic_unwind-abeae64c6d03c880.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_demangle-3e121b6b11e11352.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/libstd_detect-e2e5cc9326100cbd.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/libhashbrown-69a32640c1d25dc0.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_alloc-f21c671d69976121.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/libunwind-e2cf21c27cba2cec.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/libcfg_if-bc730a99dc830cc7.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/liblibc-9e9cd975a713105d.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/liballoc-8dee4f8da48c4bc1.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/librustc_std_workspace_core-f028abb8ba1671f1.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/libcore-d1841cbd6e8b84a0.rlib\" \"/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib/libcompiler_builtins-eb4525b43981c490.rlib\" \"windows.0.48.5.lib\" \"windows.0.48.5.lib\" \"windows.0.52.0.lib\" \"ntdll.lib\" \"windows.0.48.5.lib\" \"windows.0.52.0.lib\" \"windows.0.52.0.lib\" \"windows.0.52.0.lib\" \"skia.lib\" \"skia-bindings.lib\" \"usp10.lib\" \"ole32.lib\" \"user32.lib\" \"gdi32.lib\" \"fontsub.lib\" \"d3d12.lib\" \"dxgi.lib\" \"d3dcompiler.lib\" \"bcrypt.lib\" \"advapi32.lib\" \"legacy_stdio_definitions.lib\" \"kernel32.lib\" \"advapi32.lib\" \"kernel32.lib\" \"ntdll.lib\" \"userenv.lib\" \"ws2_32.lib\" \"kernel32.lib\" \"ws2_32.lib\" \"kernel32.lib\" \"msvcrt.lib\" \"/defaultlib:msvcrt\" \"/NXCOMPAT\" \"/LIBPATH:/home/bigfood/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-pc-windows-msvc/lib\" \"/OUT:/home/bigfood/programming/namseent/namui/sample/image-load-background/target/namui/target/x86_64-pc-windows-msvc/debug/deps/namui_runtime_x86_64_pc_windows_msvc.exe\" \"/OPT:REF,ICF\" \"/DEBUG\" \"/PDBALTPATH:%_PDB%\"
      = note: lld-link: error: undefined symbol: __std_max_element_2
              >>> referenced by skia.lib(skia.SkSLRasterPipelineBuilder.obj):(public: void __cdecl SkSL::RP::Program::Dumper::dump(class SkWStream *, bool))
              >>> referenced by skia.lib(skia.SkSLRasterPipelineBuilder.obj):(public: class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char>> __cdecl SkSL::RP::Program::Dumper::swizzlePtr<unsigned short const>(void const *, class SkSpan<unsigned short const>) const)
              
              lld-link: error: undefined symbol: __std_max_element_1
              >>> referenced by skia.lib(skia.SkSLRasterPipelineBuilder.obj):(public: class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char>> __cdecl SkSL::RP::Program::Dumper::swizzlePtr<unsigned char>(void const *, class SkSpan<unsigned char>) const)
              
              lld-link: error: undefined symbol: __std_minmax_f
              >>> referenced by skia.lib(skia.SkGlyph.obj):(public: void __cdecl SkGlyph::ensureIntercepts(float const *const, float, float, float *, int *, class SkArenaAlloc *))
              >>> referenced by skia.lib(skia.SkGlyph.obj):(public: void __cdecl SkGlyph::ensureIntercepts(float const *const, float, float, float *, int *, class SkArenaAlloc *))
              >>> referenced by skia.lib(skia.SkGlyph.obj):(public: void __cdecl SkGlyph::ensureIntercepts(float const *const, float, float, float *, int *, class SkArenaAlloc *))
              
              lld-link: error: undefined symbol: __std_max_f
              >>> referenced by skia.lib(skia.SkGradientBaseShader.obj):(struct SkRGBA4f<2> __cdecl srgb_to_hsl(struct SkRGBA4f<2>, bool *))
              >>> referenced by skia.lib(skia.SkGradientBaseShader.obj):(struct SkRGBA4f<2> __cdecl srgb_to_hwb(struct SkRGBA4f<2>, bool *))
              
              lld-link: error: undefined symbol: __std_min_f
              >>> referenced by skia.lib(skia.SkGradientBaseShader.obj):(struct SkRGBA4f<2> __cdecl srgb_to_hsl(struct SkRGBA4f<2>, bool *))
              >>> referenced by skia.lib(skia.SkGradientBaseShader.obj):(struct SkRGBA4f<2> __cdecl srgb_to_hwb(struct SkRGBA4f<2>, bool *))
              
              lld-link: error: undefined symbol: __std_find_trivial_8
              >>> referenced by skia.lib(skia.SkNWayCanvas.obj):(public: virtual void __cdecl SkNWayCanvas::removeCanvas(class SkCanvas *))
              >>> referenced by skia.lib(skia.SkSLFindAndDeclareBuiltinFunctions.obj):(void __cdecl SkSL::Transform::FindAndDeclareBuiltinFunctions(struct SkSL::Program &))
              >>> referenced by skia.lib(skia.SkSLFindAndDeclareBuiltinVariables.obj):(public: void __cdecl SkSL::Transform::`anonymous namespace'::BuiltinVariableScanner::addDeclaringElement(class Transform::Symbol const *))
              
              lld-link: error: undefined symbol: __std_find_trivial_4
              >>> referenced by skia.lib(spirv_cross.spirv_glsl.obj):(protected: void __cdecl spirv_cross::CompilerGLSL::emit_resources(void))
              >>> referenced by skia.lib(spirv_cross.spirv_cfg.obj):(private: void __cdecl spirv_cross::CFG::add_branch(unsigned int, unsigned int))
              >>> referenced by skia.lib(spirv_cross.spirv_cfg.obj):(private: void __cdecl spirv_cross::CFG::add_branch(unsigned int, unsigned int))

@bigfoodK
Copy link
Contributor Author

Related with Jake-Shadle/xwin#128

@bigfoodK bigfoodK closed this as completed Jul 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
namui This issue is for namui engine
Projects
None yet
Development

No branches or pull requests

1 participant