mirror of
https://github.com/blacktop/ipsw.git
synced 2026-06-07 12:27:36 +00:00
11 lines
274 B
Go
11 lines
274 B
Go
//go:build !darwin
|
|
|
|
package dyld
|
|
|
|
import "fmt"
|
|
|
|
// Split extracts all the dyld_shared_cache libraries
|
|
func Split(dyldSharedCachePath, destinationPath, xcodePath string, xcodeCache bool) error {
|
|
return fmt.Errorf("splitting dyld_shared_cache is only supported on darwin")
|
|
}
|