# DEV version slower again

**URL:** https://discourse.julialang.org/t/dev-version-slower-again/90256
**Category:** General Usage
**Created:** [November 14, 2022, 8:10pm UTC](https://discourse.julialang.org/t/dev-version-slower-again/90256 "2022-11-14T20:10:59Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![joa-quim](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/joa-quim/32/227_2.png) [@joa-quim](https://discourse.julialang.org/u/joa-quim)
#### Post date: [November 14, 2022, 8:11pm UTC](https://discourse.julialang.org/t/dev-version-slower-again/90256/1 "2022-11-14T20:11:00Z")

</div>

This had happen with v1.8 but v1.9DEV had recovered … until a few day ago (my latest _faster_ 1.9DEV was about 20 days old). Now 😢

```julia
  | | |_| | | | (_| | | Version 1.7.0 (2021-11-30)
 _/ |\ __'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |

julia> @time using GMT
  2.450221 seconds (4.50 M allocations: 282.988 MiB, 8.29% gc time, 36.91% compilation time)

julia> @time @eval plot(rand(5,2));
  7.135508 seconds (5.71 M allocations: 291.832 MiB, 1.66% gc time, 99.93% compilation time)

```

…

```julia
  | | |_| | | | (_| | | Version 1.9.0-DEV.1799 (2022-11-13)
 _/ |\ __'_|_|_|\__'_| | Commit b44ce138b0 (1 day old master)
|__/ |

julia> @time using GMT
  3.573865 seconds (5.18 M allocations: 331.661 MiB, 3.71% gc time, 41.77% compilation time: 53% of which was recompilation)

julia> @time @eval plot(rand(5,2));
 11.224940 seconds (10.62 M allocations: 652.734 MiB, 2.15% gc time, 99.95% compilation time: 81% of which was recompilation)

```

---

<div class="post-metadata">

### Author: ![kristoffer.carlsson](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/kristoffer.carlsson/32/22_2.png) [@kristoffer.carlsson](https://discourse.julialang.org/u/kristoffer.carlsson)
#### Post date: [November 14, 2022, 10:10pm UTC](https://discourse.julialang.org/t/dev-version-slower-again/90256/2 "2022-11-14T22:10:50Z")

</div>

If it is only ~20 days it should be pretty quick to bisect.

I tried to install GMT on Julia 1.9, 1.8 and 1.7. On 1.9 can load it but both 1.8 and 1.7 says:

```julia
julia> using GMT
[Info: Precompiling GMT [5752ebe1-31b9-557e-87aa-f909b540aa54]
Base.IOError("could not spawn `gmt --version`: no such file or directory (ENOENT)", -2)

```

---

<div class="post-metadata">

### Author: ![joa-quim](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/joa-quim/32/227_2.png) [@joa-quim](https://discourse.julialang.org/u/joa-quim)
#### Post date: [November 14, 2022, 10:14pm UTC](https://discourse.julialang.org/t/dev-version-slower-again/90256/3 "2022-11-14T22:14:26Z")

</div>

There was that `libstcd++` issue that hanged automatic GMT installation during several months and till very recently.

There should be no problems when using Windows.
