Skip to content

Commit e0ac48e

Browse files
authored
Modifying documentation to use correct editor executable file names
1 parent adbab14 commit e0ac48e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contributing/development/compiling/compiling_for_macos.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ To compile for Apple Silicon (ARM64) powered Macs, use::
5757

5858
To support both architectures in a single "Universal 2" binary, run the above two commands and then use ``lipo`` to bundle them together::
5959

60-
lipo -create bin/godot.macos.tools.x86_64 bin/godot.macos.tools.arm64 -output bin/godot.macos.tools.universal
60+
lipo -create bin/godot.macos.editor.x86_64 bin/godot.macos.editor.arm64 -output bin/godot.macos.editor.universal
6161

6262
If all goes well, the resulting binary executable will be placed in the
6363
``bin/`` subdirectory. This executable file contains the whole engine and
@@ -75,7 +75,7 @@ editor binary built with ``target=release_debug``::
7575

7676
cp -r misc/dist/macos_tools.app ./Godot.app
7777
mkdir -p Godot.app/Contents/MacOS
78-
cp bin/godot.macos.tools.universal Godot.app/Contents/MacOS/Godot
78+
cp bin/godot.macos.editor.universal Godot.app/Contents/MacOS/Godot
7979
chmod +x Godot.app/Contents/MacOS/Godot
8080
codesign --force --timestamp --options=runtime --entitlements misc/dist/macos/editor.entitlements -s - Godot.app
8181

0 commit comments

Comments
 (0)