cmd/go: fortran modules in go mod cache fail to compile (permission denied) #48349
Labels
GoCommand
cmd/go
help wanted
modules
NeedsFix
The path to resolution is known, but the work has not been done.
Milestone
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I am trying to use a module which incorporates some fortran code via cgo. If this fortran code uses fortran modules the compilation fails.
Reproducible example
As far as I understand, the cause of the problem is that
/Users/<username>/go/pkg/mod/github.com/idavydov/go_fortran_test2@v0.0.0-20210913063354-750b058b70dc
is a read-only directory (555
). Andgfortran
is trying to create ahi.mod0
.It is possible to overcome this issue by making a local directory with
go_fortran_test2
and providing areplace
directive ingo.mod
. In this case gfortran is creatinghi.mod0
in a local directory which is writable.Fortran library
mylib.f90
Note: This only fails if using fortran module.
mymod.go
executable
What did you expect to see?
Successful compilation.
What did you see instead?
The text was updated successfully, but these errors were encountered: