TCAD User

Results 110 comments of TCAD User

[test.zip](https://github.com/nschloe/meshio/files/9894691/test.zip)

> Did `file://` not work? no, the `recipe.py` file does not parse the `file:\\` scheme, and I am processing a directory and not a file. ``` [INFO]: Unpacking devsim for...

Hi @HyTurtle ``` export P4A_devsim_DIR=$HOME/git/tmp/devsim ``` seems to work. I was not able to get: ``` requirements.source.kivy = /home/jsanchez/git/tmp/devsim ``` to work. I suppose it is supposed to be `requirements.source.devsim`?...

@HyTurtle your solution works for me so i will cancel this pull request

I was surprised to learn that insertion order is not guaranteed on Python sets, while they are guaranteed on Python dicts. I think consistent build order is important, so I...

It looks like this issue has come up before: https://github.com/kivy/buildozer/issues/566 If case insensitivity still the default for macOS, it might be easiest to move to a case insensitive disk.

In the recipe, it is mixed case: https://github.com/kivy/kivy-ios/blob/master/kivy_ios/recipes/sdl2/__init__.py#L8 so there is probably a string conversion going on somewhere in either kivy-ios or the rest of the build system (xcode)

If your filesystem is case insensitive, it means that the same exact file is being referenced twice. Looking on your linker line, I see the same libraries being listed multiple...

what I am seeing is that the recipes are referencing themselves with the mixed case name: ``` jsanchez@jslaptop:~/git/kivy-ios/kivy_ios$ grep -s -i SDL2 */*/* | grep libr recipes/sdl2_image/__init__.py: library = "Xcode/build/Release-{plat.sdk}/libSDL2_image.a"...

Since I've never seen this problem before, but I haven't build a package in a while, I am guessing that either Your version of XCode is too new or Your...