Chih-Hsuan Yen

Results 400 comments of Chih-Hsuan Yen

From the build log on macOS (https://ci.keepassxc.org/buildConfiguration/KeePassXC_MacOS/217714?hideProblemsFromDependencies=false&hideTestsFromDependencies=false&expandBuildProblemsSection=true&expandBuildChangesSection=true), ``` Undefined symbols for architecture x86_64: "_CFArrayAppendValue", referenced from: __ykosx_CopyToCFArray in libykcore.a(ykcore_osx.c.o) "_CFArrayCreateMutable", referenced from: __ykusb_open_device in libykcore.a(ykcore_osx.c.o) "_CFArrayGetCount", referenced from: __ykosx_getHIDDeviceMatching in...

Thanks for the update! The next error (from https://ci.keepassxc.org/buildConfiguration/KeePassXC_ReleaseMacOS/221780?buildTab=log&focusLine=956&logView=flowAware&linesState=168) ``` [14:28:52]W: [Step 2/4] Undefined symbols for architecture x86_64: [14:28:52]W: [Step 2/4] "vtable for MacPasteboard", referenced from: [14:28:52]W: [Step 2/4] Clipboard::Clipboard(QObject*)...

`undefined reference to xxx` linker failures on Ubuntu Linux CI can be fixed with: ```Diff diff --git a/src/browser/CMakeLists.txt b/src/browser/CMakeLists.txt index 98715cb1..d1dbf50f 100755 --- a/src/browser/CMakeLists.txt +++ b/src/browser/CMakeLists.txt @@ -33,5 +33,5 @@...

> Auto type only makes sense in a gui context. Shouldn't be hard to move everything over to the gui side of the build. Auto type is already in the...

I mentioned a tip earlier (https://github.com/keepassxreboot/keepassxc/issues/1741#issuecomment-917577331) > In Password Generator, there is a useful field "Do not include". I put curly brackets in that field `{}`, so future passwords will...

> botocore.exceptions.ConnectTimeoutError: Connect timeout on endpoint URL: "http://169.254.169.254/latest... FWIW, I have once got similar errors, and I got rid of them by adding some environment variables. See https://github.com/aio-libs/aiobotocore/issues/948#issuecomment-1190689924

> Tested ant it does not change anything and more even units fails. I also got many failures from `tests/test_basic_s3.py` with botocore 1.29.16, so I keep botocore 1.27.96 for now...

Seems onnxoptimizer is built for `cp3?-*` [1], so `cp310-*` (CPython 3.10) and `cp311-*` (CPython 3.11) do not match. [1] https://github.com/onnx/optimizer/blob/74fdf9cbbf9f7e70fc9727871ba63a8472e26dee/.github/workflows/build-and-test.yml#L20

0.3.6 is published with Python 3.10 and 3.11 wheels 🎉 https://pypi.org/project/onnxoptimizer/#files

> I was able to work around this issue by calling `getifaddrs` via cgo Brilliant! Inspired by your work, I looked into how Android implements `getifaddrs`, and found that `RTM_GETADDR`...