Kim Gräsman

Results 88 comments of Kim Gräsman

You may want to pull the branch for this PR, I recently pushed a bunch of fixes, for this issue among others: https://github.com/joakimkarlsson/igloo/pull/25

I hesitate to link it if it's unrelated, but does purl rquest numero 845 work toward solving this? Thanks.

The root cause appears to be that `librdkafka` now requires Cyrus SASL, but the confluent-kafka-go wrappers don't spell out a link dependency to it. All the workarounds above seem to...

As far as fixing the root cause bug; I'm not sure why there's now a hard link dependency on libsasl2.so. But I see that the Darwin cgo LDFLAGS have `-lsasl2`...

It turns out the docs at https://github.com/confluentinc/librdkafka/wiki/Using-SASL-with-librdkafka#4-install-sasl-modules-on-client-host say: > Note: librdkafka must be built with SASL support (which is enabled by default if libsasl2-dev is installed at buildtime) So I...

Followup: we actually ran into a problem with the proposed workaround -- `CGO_LDFLAGS` are injected before the cgo LDFLAGS, and gcc `-l` switches are sensitive to order (beautifully described here:...

And as a final workaround tip: you can use a more modern linker which doesn't have the input order requirements: [lld](https://lld.llvm.org/) or [mold](https://github.com/rui314/mold). Here's a Dockerfile to use `mold` ```...

@sagikazarmark > I have cyrus-sasl-dev installed. You mentioned xx. I'm not familiar with it, but I'm assuming you've installed cyrus-sasl-dev using xx-apk in the build context? https://github.com/tonistiigi/xx?tab=readme-ov-file#xx-apk-xx-apt-xx-apt-get---installing-packages-for-target-architecture I wonder if...

We would find this useful too. Support for expanding regular old environment variables in configuration values would be enough for us, e.g. <AddAssembly>server\bin\%CONFIG%\framework.dll</AddAssembly> Of course, the ${config} syntax would work...

> Since this issue is solved in the master branch, could you add a new tag? @nilsmagnus Could you point me to where this is solved? I haven't found any...