Taha Yaseen
Taha Yaseen

Reputation: 11

SkiaSharp Version Compatible with glibc 2.17 on CentOS 7

I'm working on a CentOS 7 system, which has glibc 2.17 and cannot be upgraded. I need to use SkiaSharp, but the latest version (v3) requires glibc 2.27+, which causes compatibility issues.

My setup:

OS: CentOS 7

glibc version: 2.17 (cannot be upgraded)

Current SkiaSharp version: v3 (not compatible due to glibc 2.27+ requirement)

My questions: Is there any SkiaSharp version that is compatible with glibc 2.17? If not, what are my options?

Upvotes: -3

Views: 31

Answers (1)

Employed Russian
Employed Russian

Reputation: 213869

Is there any SkiaSharp version that is compatible with glibc 2.17

GLIBC-2.17 is over 13 years old. I doubt you'll find anyone building GLIBC-2.17 compatible binaries.

But you may be able to do that yourself.

If not, what are my options?

Your easiest option is to use a Docker container with newer GLIBC.

Another option is to install GLIBC-2.27 in an alternate location, and make your program use that newer version (by using alternate location, you will not affect any existing programs; an explicit opt-in would be required).

More details here.

Upvotes: 0

Related Questions