Could anyone with a few minutes to spare help me investigate a problem with Cairo on macOS/Linux?
Assuming you’ve installed Cairo successfully (and it’s been pre-compiled), run:
using Cairo
@time cr = CairoRGBSurface(256, 256)
@time c = CairoContext(cr)
and report the two times… So far the results I have are:
| User | Platform | Julia | Time1 | Time2 |
|---|---|---|---|---|
| cormullion | macOS | v0.6 | 0.0154 | 0.370006 |
| cormullion | macOS | v1.0.2 | 0.104971 | 11.136036 |
| cormullion | macOS | v1.1.0 | 0.008384 | 10.546599 |
| lobingera | Linux | v1.0.2 | 0.013114 | 0.013396 |
The problem is that Cairo is very slow to get going on my Mac. First I want to know if it’s not just me… ![]()