HISE Logo Forum
    • Categories
    • Register
    • Login

    Mac Export - arm64 unidentified symbols

    Scheduled Pinned Locked Moved General Questions
    68 Posts 6 Posters 3.5k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • trillbillyT
      trillbilly @Lindon
      last edited by

      @lindon Ok great, I do not intend to sell anything on the App Store or with installers (at least as of yet).

      Im just starting to dig into it. It looks like something done via the Terminal (kind of how xcpretty was installed). Is this correct?

      Ive skimmed some things saying you can have Xcode sign things automatically for you, have you tested this?

      LindonL 1 Reply Last reply Reply Quote 0
      • LindonL
        Lindon @trillbilly
        last edited by Lindon

        @trillbilly - yes its a set of terminal commands you should use, XCode will only sign for you if you set it up as part of the compile process- I dont think anyone here has got XCode to do this automatically out of a HISE initiated compile, and given how simple it is to do manually Im not sure any one is trying...

        HISE Development for hire.
        www.channelrobot.com

        trillbillyT 1 Reply Last reply Reply Quote 0
        • trillbillyT
          trillbilly @Lindon
          last edited by

          @lindon Ok, great, thanks! I'll dig into it now and see if I can figure it out.

          Are these commands entered after the VST is exported or something done while exporting?

          Week 2 with a Mac, lets see how it goes...

          LindonL 1 Reply Last reply Reply Quote 0
          • LindonL
            Lindon @trillbilly
            last edited by Lindon

            @trillbilly said in Mac Export - arm64 unidentified symbols:

            @lindon Ok, great, thanks! I'll dig into it now and see if I can figure it out.

            Are these commands entered after the VST is exported or something done while exporting?

            Week 2 with a Mac, lets see how it goes...

            Once you have an exported plug-in set you will then need to code sign them individually.

            Try reading (all of) this:

            Just a moment...

            favicon

            (www.kvraudio.com)

            if you get stuck given me a shout - and I will fire up the Mac to get you the relevant commands...

            HISE Development for hire.
            www.channelrobot.com

            trillbillyT 1 Reply Last reply Reply Quote 0
            • trillbillyT
              trillbilly @Lindon
              last edited by

              @lindon Ok, cool, thank you! Im going to read through this a bit and see what the deal is. Im sure I will be back lol

              LindonL 1 Reply Last reply Reply Quote 0
              • LindonL
                Lindon @trillbilly
                last edited by

                @trillbilly said in Mac Export - arm64 unidentified symbols:

                @lindon Ok, cool, thank you! Im going to read through this a bit and see what the deal is. Im sure I will be back lol

                yeah its a bit confusing - but most of it is people struggling with their implementation - and Apple moving the requirements - its quite an old thread ...and Apple changed a few things at different points in the process - annoyingly...

                HISE Development for hire.
                www.channelrobot.com

                trillbillyT 1 Reply Last reply Reply Quote 0
                • trillbillyT
                  trillbilly @Lindon
                  last edited by

                  @lindon Ya, there's a lot going on in the thread lol. I'm trying to dig through and decipher what I need. Ill be here for a while.

                  If you get to your Mac and are able to expedite my process, it would be greatly appreciated!

                  Just to be clear on the codesigning...

                  1. There is nothing I need to download in order to use this via the Terminal, correct?

                  2. The codesigning can be done without being App Developer (since Im creating products that do not use installer)?

                  d.healeyD 1 Reply Last reply Reply Quote 0
                  • d.healeyD
                    d.healey @trillbilly
                    last edited by

                    @trillbilly said in Mac Export - arm64 unidentified symbols:

                    Ya, there's a lot going on in the thread

                    You only need the first post.

                    Libre Wave - Freedom respecting instruments and effects
                    My Patreon - HISE tutorials
                    YouTube Channel - Public HISE tutorials

                    trillbillyT 1 Reply Last reply Reply Quote 0
                    • trillbillyT
                      trillbilly @d.healey
                      last edited by

                      @d-healey Ok, cool. According to that the Apple Developer ID is required, which is no biggy. Ill be trying to sign a plugin shortly. Thanks

                      LindonL 1 Reply Last reply Reply Quote 0
                      • LindonL
                        Lindon @trillbilly
                        last edited by

                        @trillbilly - yes, sorry if I gave you the impression you didnt need a developer ID - you do - to codesign stuff, but not to sell stuff..

                        So I'm at the Mac...so....

                        1. copy your plugins to the desktop (not strictly required but it makes everything a lot simpler)
                        2. open a terminal window...
                        3. type this:

                        codesign -s "Developer ID Application: ()" "/Users//Desktop/XXX.vst" --timestamp

                        so an example might be:

                        codesign -s "Developer ID Application: Alan Smith (1234AB4FDG)" "/Users/alan/Desktop/coolplugin.vst" --timestamp

                        1. hit enter and wait .....in a few moments you will be told it was successful - most errors are in the typing - make sure you include the quotes in the correct places...

                        To test it worked type this into the terminal window:

                        codesign -vvv /Users//Desktop/XXX.vst3

                        repeat replacing XXX.vst with XXX.component

                        Now you will have a couple of codesigned plugins - copy from the desktop to the correct plugin folders...

                        HISE Development for hire.
                        www.channelrobot.com

                        trillbillyT 2 Replies Last reply Reply Quote 2
                        • trillbillyT
                          trillbilly @Lindon
                          last edited by

                          @lindon Awesome man, thanks! My daughter is home from Daycare today so I'm gonna be a little late getting to the studio today. When I get there, I'll throw this in the terminal and give it a go!

                          As for notarized, I can see it's a different process in the terminal. It looks like you need an auto generated password, which I believe you get from the Apple Developer Account, correct?

                          Just for my own sanity...

                          "Codesigning" is a stamp that let's Apple know the App is created by a trusted developer.

                          "Notarized" is ensuring the App doesn't have any virus, etc.

                          Are these the basic ideas of the two?

                          LindonL 1 Reply Last reply Reply Quote 0
                          • LindonL
                            Lindon @trillbilly
                            last edited by

                            @trillbilly said in Mac Export - arm64 unidentified symbols:

                            @lindon Awesome man, thanks! My daughter is home from Daycare today so I'm gonna be a little late getting to the studio today. When I get there, I'll throw this in the terminal and give it a go!

                            As for notarized, I can see it's a different process in the terminal. It looks like you need an auto generated password, which I believe you get from the Apple Developer Account, correct?

                            Just for my own sanity...

                            "Codesigning" is a stamp that let's Apple know the App is created by a trusted developer.

                            "Notarized" is ensuring the App doesn't have any virus, etc.

                            Are these the basic ideas of the two?

                            not quite...
                            DAWs should NOT open or even offer you access to non-codesigned plug-ins.

                            Notarizing is for stand alone applications - like a stand alone version of your product, or the installer/packager you give to users to set up your product, MacOS wont even run these stand-alones without them being notarized. All notarized products should be codesigned first, then notarized.

                            Dont even get me started on the Avid/PACE EDEN tool kit for AAX...

                            .

                            HISE Development for hire.
                            www.channelrobot.com

                            trillbillyT 1 Reply Last reply Reply Quote 0
                            • trillbillyT
                              trillbilly @Lindon
                              last edited by

                              @lindon I'm not even concerned about AAX at the moment. As long as I can ensure VSTi and AU work and are compatible both Mac & Windows, I will be happy for the time being.

                              Thanks for the clarification. So in other words, if I'm not doing installers or a standalone app, which I'm doing neither, the notarization is useless and as long as the individual plugins are codesigned, they are good to go in Apples eyes?

                              LindonL 1 Reply Last reply Reply Quote 0
                              • LindonL
                                Lindon @trillbilly
                                last edited by

                                @trillbilly yep - no Notarizing needed.

                                HISE Development for hire.
                                www.channelrobot.com

                                1 Reply Last reply Reply Quote 0
                                • trillbillyT
                                  trillbilly @Lindon
                                  last edited by

                                  @lindon said in Mac Export - arm64 unidentified symbols:

                                  codesign -s "Developer ID Application: ()" "/Users//Desktop/XXX.vst" --timestamp

                                  Hey man! So Im using this but getting an error like below:

                                  error: The specified item could not be found in the keychain.

                                  Here is my code from terminal:

                                  codesign -s "Developer ID Application: My Name (My Number)" "/Users/mymac/Desktop/Blaque.vst3 " --timestamp

                                  Do you spot any errors?I think I have everything in the correct place but apparently not.

                                  d.healeyD 1 Reply Last reply Reply Quote 0
                                  • d.healeyD
                                    d.healey @trillbilly
                                    last edited by

                                    @trillbilly Have you added your credentials to the system keychain?

                                    Libre Wave - Freedom respecting instruments and effects
                                    My Patreon - HISE tutorials
                                    YouTube Channel - Public HISE tutorials

                                    trillbillyT 1 Reply Last reply Reply Quote 0
                                    • trillbillyT
                                      trillbilly @d.healey
                                      last edited by

                                      @d-healey yes, I used my account name & user ID # provided by my Apple Developer Account (I just didn't post those credentials on the forum). I also used the correct desktop path as I just dragged and dropped the VST in Terminal for this.

                                      d.healeyD 1 Reply Last reply Reply Quote 0
                                      • d.healeyD
                                        d.healey @trillbilly
                                        last edited by

                                        @trillbilly said in Mac Export - arm64 unidentified symbols:

                                        I used my account name & user ID # provided by my Apple Developer Account

                                        Double check that your details are correct in the keychain - https://help.apple.com/xcode/mac/current/#/dev97211aeac

                                        Libre Wave - Freedom respecting instruments and effects
                                        My Patreon - HISE tutorials
                                        YouTube Channel - Public HISE tutorials

                                        trillbillyT 1 Reply Last reply Reply Quote 0
                                        • trillbillyT
                                          trillbilly @d.healey
                                          last edited by

                                          @d-healey ahhhh, I got you.

                                          Apple Development, the gift that keeps on giving...

                                          LindonL 1 Reply Last reply Reply Quote 0
                                          • LindonL
                                            Lindon @trillbilly
                                            last edited by

                                            @trillbilly and this:

                                            /Users/mymac/Desktop/Blaque.vst3

                                            is not the same as this:

                                            /Users//Desktop/XXX.vst

                                            unless your user name is mymac

                                            HISE Development for hire.
                                            www.channelrobot.com

                                            trillbillyT 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            24

                                            Online

                                            1.8k

                                            Users

                                            12.0k

                                            Topics

                                            104.1k

                                            Posts