On 4/27/22 08:27, IOhannes m zmoelnig wrote:
On 4/27/22 08:25, IOhannes m zmoelnig wrote:something like this should do the trick (in the terminal): ``` cd /Applications/Pd-0.52.2.app/Content/Resources/bin/ mv pd pd.fat lipo pd.fat -thin x86_64 -output pd ```i forgot: this will most likely invalidate any signature of the pd binary.you'll probably have to add an override (or re-sign yourself) in order to launch the resulting Pd...
so here's a better solution (also untested).
instead if *everything* i wrote above do this:
1. find the file Pd.app/Content/Resources/tcl/pd-gui.tcl
2. open it in an editor
3. locate the line (somewhere around line:846) that says:
"[exec -- $pd_exec -guiport $::port {*}$::pd_startup_args &]"
4. in this line put an "arch -x86_64" before the $pd_exec, so it now reads:
"[exec -- arch -x86_64 $pd_exec -guiport $::port
{*}$::pd_startup_args &]"
this will (well: should) force the Pd-core to run as x86_64. it would be great if you could report back any success (or failure)... gfmadsr IOhannes
OpenPGP_signature
Description: OpenPGP digital signature
_______________________________________________ Pd-dev mailing list [email protected] https://lists.puredata.info/listinfo/pd-dev
