Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

libuv git submodule pointing to non-existent tree? #1207

Closed
drewm1980 opened this issue Aug 24, 2012 · 6 comments
Closed

libuv git submodule pointing to non-existent tree? #1207

drewm1980 opened this issue Aug 24, 2012 · 6 comments
Assignees
Labels
building Build system, or building Julia or its dependencies

Comments

@drewm1980
Copy link

I am attempting to build Julia on Debian GNU/Linux 6.0. I'd tell you what git version I'm on (updated master branch today), but git status is hanging.

I re-ran make about 20 times because it kept exiting with uninformative errors, but then kept finding new targets to build. Finally I got stuck on:

fatal: reference is not a tree: a6d3d8f90f6177d782a5f6cc143e60216ccd3567
Unable to checkout 'a6d3d8f90f6177d782a5f6cc143e60216ccd3567' in submodule path 'deps/libuv'
make[2]: *** [libuv/Makefile] Error 1
make[1]: *** [julia-release] Error 2
make: *** [release] Error 2

Cheers,
Andrew

@ghost ghost assigned Keno Aug 24, 2012
@ViralBShah
Copy link
Member

I updated today, but didn't face any such issue. @loladiro ?

@StefanKarpinski
Copy link
Member

Maybe git submodule update will help?

@Keno
Copy link
Member

Keno commented Aug 24, 2012

The ref definitely exists: JuliaLang/libuv@a6d3d8f. If Stefan's suggestion doesn't work try deleting the deps/libuv directory.

@StefanKarpinski
Copy link
Member

Ok, I would try just doing git --version which shouldn't attempt to check the status, which is probably confusing your git because your git is too old to know about submodules. So basically, I think your git is too old. Recommendation: get a newer git, either via debian, or compile one from source (you can probably git clone git itself even using a really old version of git). Installing git from source is pretty painless and I would recommend it. I run a hand-compiled git version. The worst part is actually generating the docs, which requires asciidoc, which depends on everything in the entire world, and takes forever.

@StefanKarpinski
Copy link
Member

The key word here is tree — this aged git is looking for a tree, not a commit. And yes, the tree does not exist — because that object isn't a tree.

@drewm1980
Copy link
Author

git submodule init and update did not work. Blowing away the deps/libuv directory and re-runing make worked, and my compile is continuing. Thanks!

KristofferC added a commit that referenced this issue Feb 25, 2025
)

Stdlib: LinearAlgebra
URL: https://github.com/JuliaLang/LinearAlgebra.jl.git
Stdlib branch: master
Julia branch: master
Old commit: e7da19f
New commit: f781708
Julia version: 1.13.0-DEV
LinearAlgebra version: 1.12.0(Does not match)
Bump invoked by: @KristofferC
Powered by:
[BumpStdlibs.jl](https://github.com/JuliaLang/BumpStdlibs.jl)

Diff:
JuliaLang/LinearAlgebra.jl@e7da19f...f781708

```
$ git log --oneline e7da19f..f781708
f781708 use the custom sysimage when running documentation (and doctests) as well (#1226)
8fdbfd5 Add `getindex` for `SymTridiagonal` using a `BandIndex` (#1223)
91b8845 Use `BandIndex` directly in `diagzero` call in `getindex` (#1222)
ef7ef3a Restrict triangular type aliases to `AbstractMatrix`es (#1220)
af7a9ac Use `BandIndex` directly in `diagzero` call in `getindex` for banded matrices
579b5f7 Specialize Diagonal * Adjoint (#1207)
5cf41c4 Indirection in matrix multiplication to avoid ambiguities (#1210)
0a9c164 Remove specialized `issymmetric`/`ishermitian` for `Diagonal{<:Number}` (#1213)
ff5648a Make unitary matrices in `svd`/`eigen` of `Diagonal` be unitless (#1155)
e096a03 Don't mutate arrays in symmetric trig functions (#1206)
c234bed Loop over `diagind` in `diag` for banded matrices (#1211)
57785c7 More resizing for truncating return values from LAPACK (#1190)
b464203 Materialize adjoint in mul with `HermOrSym` (#1191)
16d9d61 Restrict Diagonal sqrt branch to positive diag (#1203)
baa48b7 Verbose `showerror` for `SingularException` (#1204)
e0b59a7 Remove `LinearAlgebra` qualifications in `cholesky.jl` (#1209)
95d009b Remove `LinearAlgebra` qualifications in `cholesky.jl`
c550974 change to pivot
ed35a37 Add fast path in generic matmul (#1202)
8c7fe68 Detailed `showerror` for `SingularException`
2a1696a Explicitly declare type constructor imports (#1196)
101f766 Added note to BLAS.[g|s]et_num_threads about Apple Accelerate not supporting it  (#1195)
5aca26f Simplify `getproperty` for `Cholesky*` (#1197)
924dda4 remove copy-allocation on accessing `cholesky` factors (`.L`, `.U`) (#1186)
6f02532 Use `BLAS.trsm!` instead of `LAPACK.trtrs!` in left-triangular solves (#1194)
```

Co-authored-by: KristofferC <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
building Build system, or building Julia or its dependencies
Projects
None yet
Development

No branches or pull requests

4 participants