kakyoism

Results 18 comments of kakyoism

Target platform: iOS (arm64) Xcode 11.6 Compiler: Apple clang version 11.0.3 (clang-1103.0.32.62) CMake command ```sh cmake -GXcode \ -DENABLE_TESTS=ON \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_TOOLCHAIN_FILE="$ProjDir"/cmake/ios.cmake \ -DIOS_PLATFORM=OS64 \ "$ProjDir" ``` Then ```sh...

Do you have any luck on this one? @weswhet

> @kakyoism I believe I had to use `cmake` to get this working. But haven't looked at this in a while. I'm waiting for a different upstream change in another...

Looks like we must build grpc-tools ourselves for Apple Silicon? I'm a beginner here. Could anybody kindly share a pointer to how to build it locally?

@ldx Thanks a lot! I also found that I could resort to the emulated version with a Rosseta-enabled Terminal copy and install the Intel-edition Homebrew.

I stumbled upon the icon issue when trying to use `iconPath` as documented in [`electron-wix-msi`'s doc](https://github.com/felixrieseberg/electron-wix-msi). AFAIK, this is the underlying implementation, and forge should actually use the arg name...

> Can you please run the app from a terminal and see if any additional information is logged? That's the problem. I did exactly that and what I got was,...

I attached my Xcode project. Would you please take a look? To build it, you'll need: `brew install pygobject3 gtk+3` After that the Xcode project should build and run. This...

The test projects are attached. Unzip, do not change their relative location, and build them both. Then you should be able to see what I see, hopefully. [Archive.zip](https://github.com/auriamg/macdylibbundler/files/3514243/Archive.zip)

I tried something new. After I see the `Abort trap`, I simply: ``` install_name_tool -change /usr/local/lib/libmylib.dylib @executable_path/../Resources/lib/libmylib.dylib hello_dylib.app/Contents/MacOS/hello_dylib ``` Then, run the executable as usual ``` /Users/me/Desktop/_learn/gtk/hello_dylib/build/Debug/hello_dylib.app/Contents/MacOS/hello_dylib ``` This gives...