• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Debug audio unit with xcode 5
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Debug audio unit with xcode 5


  • Subject: Re: Debug audio unit with xcode 5
  • From: Edward Agabeg <email@hidden>
  • Date: Wed, 11 Dec 2013 16:09:01 -0500

I had encountered an error when running auval. Therefore I wanted to create a setup which worked quite well in Xcode 3:
Set up auval as the active executable and automatically launch auval after the build. So, I edited the scheme to include the executable /usr/bin/auval and pass the arguments on lauch:
-v aufx PLUG Manu

Needed to do this recently myself, here's what worked for me: create a scheme to copy the built bundle into the Components directory via a script then run auvaltool with the appropriate -v argument.

auval is just a script that takes arguments to run auvaltool in either architecture.

> #! /bin/sh
>
> if [[ $1 = '-64' ]] ; then
>         shift
>         arch -x86_64 /usr/bin/auvaltool "$@"
> elif [[ $1 = '-ppc' ]] ; then
>         shift
>         arch -ppc /usr/bin/auvaltool "$@"
> else
>         arch -i386 /usr/bin/auvaltool "$@"
> fi

edward
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Coreaudio-api mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Prev by Date: Re: Change of factory presets in AU initiated by plugin
  • Next by Date: Synchronizing Input And Output Buffers
  • Previous by thread: Debug audio unit with xcode 5
  • Next by thread: Re: Change of factory presets in AU initiated by plugin
  • Index(es):
    • Date
    • Thread