Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kuruk-mm committed Mar 9, 2024
1 parent ca281c9 commit bb0bf96
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 10 deletions.
57 changes: 47 additions & 10 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/.bin/godot/godot4_bin",
"args": ["--path", "${workspaceFolder}/godot"],
"args": [
"--path",
"${workspaceFolder}/godot"
],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/godot",
"environment": [
Expand All @@ -26,7 +29,11 @@
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/.bin/godot/godot4_bin",
"args": ["--path", "${workspaceFolder}/godot", "--test"],
"args": [
"--path",
"${workspaceFolder}/godot",
"--test"
],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/godot",
"environment": [
Expand All @@ -43,7 +50,11 @@
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/.bin/godot/godot4_bin",
"args": ["--path", "${workspaceFolder}/godot", "-e"],
"args": [
"--path",
"${workspaceFolder}/godot",
"-e"
],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/godot",
"environment": [],
Expand All @@ -55,7 +66,11 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/.bin/godot/godot4_bin",
"args": ["--path", "${workspaceFolder}/godot", "-e"],
"args": [
"--path",
"${workspaceFolder}/godot",
"-e"
],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/godot",
"environment": [],
Expand All @@ -67,7 +82,10 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/.bin/godot/godot4_bin",
"args": ["--path", "${workspaceFolder}/godot"],
"args": [
"--path",
"${workspaceFolder}/godot"
],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/godot",
"environment": [
Expand All @@ -93,7 +111,11 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/.bin/godot/godot4_bin",
"args": ["--path", "${workspaceFolder}/godot", "--test"],
"args": [
"--path",
"${workspaceFolder}/godot",
"--test"
],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/godot",
"environment": [],
Expand All @@ -114,7 +136,11 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/.bin/godot/godot4_bin",
"args": ["--path", "${workspaceFolder}/godot", "-e"],
"args": [
"--path",
"${workspaceFolder}/godot",
"-e"
],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/godot",
"environment": [],
Expand All @@ -126,12 +152,23 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/.bin/godot/godot4_bin",
"args": ["--path", "${workspaceFolder}/godot"],
"args": [
"--path",
"${workspaceFolder}/godot"
],
"stopAtEntry": false,
"cwd": "${workspaceRoot}/godot",
"environment": [],
"externalConsole": true,
"preLaunchTask": "Build GDExtension Lib"
"preLaunchTask": "Build GDExtension Lib",
"MIMode": "lldb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
}
4 changes: 4 additions & 0 deletions rust/decentraland-godot-lib/builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ After cloning `ffmpeg-kit` ensure you have the right environment to build it. So
1. Install one-by-one the brew dependencies `autoconf automake libtool pkg-config curl git doxygen nasm cmake gcc gperf texinfo yasm bison autogen wget gettext meson ninja ragel groff gtk-doc-tools libtasn1`
2. Ensure you `bison` version in your path is > 2.4 (`bison --help`), probably you need to add the brew isntalled to PATH

Add Rust target for iOS with:
`rustup target add aarch64-apple-ios`


The command to build it:
`bash ios.sh --full --disable-armv7 --disable-armv7s --disable-arm64-mac-catalyst --disable-arm64-simulator --disable-arm64e --disable-i386 --disable-x86-64 --disable-x86-64-mac-catalyst --disable-lib-fribidi --disable-lib-openssl --disable-lib-libass`
This only buils for arm64. `fribidi` and `libass` should be compiled but I got errors when I tried to include them.
Expand Down

0 comments on commit bb0bf96

Please sign in to comment.