mirror of
https://github.com/restic/restic.git
synced 2025-07-19 14:08:29 +00:00
Merge pull request #5138 from vmlemon/issue-5131
Implement basic DragonFlyBSD support
This commit is contained in:
commit
0bf8af7188
6
changelog/unreleased/issue-5131
Normal file
6
changelog/unreleased/issue-5131
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
Enhancement: Add DragonflyBSD support
|
||||||
|
|
||||||
|
Restic can now be compiled on DragonflyBSD.
|
||||||
|
|
||||||
|
https://github.com/restic/restic/issues/5131
|
||||||
|
https://github.com/restic/restic/pull/5138
|
@ -245,6 +245,7 @@ func buildTargets(sourceDir, outputDir string, targets map[string][]string) {
|
|||||||
var defaultBuildTargets = map[string][]string{
|
var defaultBuildTargets = map[string][]string{
|
||||||
"aix": {"ppc64"},
|
"aix": {"ppc64"},
|
||||||
"darwin": {"amd64", "arm64"},
|
"darwin": {"amd64", "arm64"},
|
||||||
|
"dragonfly": {"amd64"},
|
||||||
"freebsd": {"386", "amd64", "arm"},
|
"freebsd": {"386", "amd64", "arm"},
|
||||||
"linux": {"386", "amd64", "arm", "arm64", "ppc64le", "mips", "mipsle", "mips64", "mips64le", "riscv64", "s390x"},
|
"linux": {"386", "amd64", "arm", "arm64", "ppc64le", "mips", "mipsle", "mips64", "mips64le", "riscv64", "s390x"},
|
||||||
"netbsd": {"386", "amd64"},
|
"netbsd": {"386", "amd64"},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
//go:build aix || netbsd || openbsd
|
//go:build aix || dragonfly || netbsd || openbsd
|
||||||
// +build aix netbsd openbsd
|
// +build aix dragonfly netbsd openbsd
|
||||||
|
|
||||||
package fs
|
package fs
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user