Gabriel Wu
Gabriel Wu
I encountered `x86_64-linux-gnu-gcc: error: unrecognized command line option ‘-R’` during linking.
Need to solve OSX issues. I kept both `.dylib` and `.so` but when I tried to build libsoup, glib-networking was still not recognized.
Updated soup build recipe: ```julia using BinaryBuilder using Pkg: PackageSpec name = "Soup" version = v"3.2.1" # Collection of sources required to build Soup sources = [ ArchiveSource("https://download.gnome.org/sources/libsoup/$(version.major).$(version.minor)/libsoup-$(version).tar.xz", "b1eb3d2c3be49fbbd051a71f6532c9626bcecea69783190690cd7e4dfdf28f29"), ]...
@giordano - In the latest commit, I just copied `.so` files, and then `BinaryBuilder` failed to find the library products because they were `.so` instead of the expected `.dylib`. This...
Update: I was able to build libsoup with the following script ```julia using BinaryBuilder using Pkg: PackageSpec name = "Soup" version = v"3.2.1" # Collection of sources required to build...
OSX build of `soup` failed at the last step: ``` [09:51:13] Installing libsoup/libsoup-3.0.0.dylib to /workspace/destdir/lib ... [ Info: Modifying dylib id from "/workspace/destdir/lib/libsoup-3.0.0.dylib" to "@rpath/libsoup-3.0.0.dylib" ... [ Info: Could not...
Thanks. The problem is now fixed. ```julia using BinaryBuilder using Pkg: PackageSpec name = "Soup" version = v"3.2.1" # Collection of sources required to build Soup sources = [ ArchiveSource("https://download.gnome.org/sources/libsoup/$(version.major).$(version.minor)/libsoup-$(version).tar.xz",...
I tested locally and found that even if I commented out my modifications, the test suite still failed. ```julia Linux x86_64 {cxxstring_abi=cxx11, julia_version=1.8.1, libc=glibc, libgfortran_version=5.0.0, libstdcxx_version=3.4.29}: Error During Test at...
I have been working on this for a while.
I could have implemented a ding-dong bot easily, but there are some design issues I have not completely figured out, so I have not yet released it. Nevertheless, the grpc...