From ad0a70546a2ca455ecb33ea79da40ce45f778cd9 Mon Sep 17 00:00:00 2001 From: blacktop Date: Sun, 28 Mar 2021 22:15:58 -0400 Subject: [PATCH] fix: dyld tbd symbol output --- pkg/tbd/template.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/tbd/template.go b/pkg/tbd/template.go index 160915216..f53ce27e8 100644 --- a/pkg/tbd/template.go +++ b/pkg/tbd/template.go @@ -1,12 +1,13 @@ package tbd -const tbdTemplate = `--- +const tbdTemplate = `--- !tapi-tbd-v3 archs: [ {{ StringsJoin .Archs ", " }} ] platform: {{.Platform}} install-name: {{.Path}} current-version: {{.Version}} +objc-constraint: none exports: - archs: [ {{ StringsJoin .Archs ", " }} ] - symbols: [ {{ StringsJoin .Symbols ", " }} ] + symbols: [ {{ StringsJoin .Symbols ",\n " }} ] ... `