How to install gnustep in alpine Linux? - alpine-linux

I installed the iSH app which is used the alpine linux.
But apk add gnustep doesn’t exist.
My purpose to install gnustep is compile the objective-c codes on iPad.

Related

How to run Swift binaries compiled on macOS on Linux?

So I have a Command Line application here in Xcode on my Mac and I can get the build binary and run it.
Is it possible to run that binary on Linux or somehow build the project to run on Linux?
I'm using Virtual Box with Debian Linux 10.2, Xcode 11.2.1, macOS 10.15.1

Ionic Capacitor iOS on linux

Considering this answer, it is not possible to run Xcode on Arch Linux.
Capacitor iOS documentation says that I need it to run iOS emulation.
Is there a way to emulate iOS device on Manjaro using Ionic Capacitor?
you can run xcode on linux NATIVELY using darling
Darling is a translation layer that lets you run macOS software on Linux
once installed you can install xcode
via command-line developer tool following this link
No, it's not possible, iOS requires Xcode and macOS

Swift on Mac terminal

Formerly I used FreeBSD and NetBSD. Mostly I code C on Command Line Interface (CLI) with vim editor.
Now I am using macOS. As I get used to CLI, so when I code swift on macOS, I opt console.
I've learned that I can also code swift on Mac Terminal without installing Xcode. I can compile or interpret and run simple Swift code on Terminal.
So my questions, does swift on Mac Terminal have full features as Xcode or not? Are all Swift libraries included in Mac Terminal?
You will have to install Xcode even if you don't plan to use it, because it installs the Swift toolchain.
On Linux you can install standalone Swift (and of course you can only access Linux libraries, not macOS or iOS ones) but in macOS you have to install via Xcode (but you don't have to use Xcode itself to write code).
See https://swift.org/getting-started/ and https://swift.org/download/#releases
Install xcode command line tools. Then in terminal, follow steps:
Step 1: Open Terminal
Step 2: Type "swift"
Now you can write swift code here. But better to use playground.

cx_freeze on MAC 10.9 Python 2.7.6 (32/64 bit)

I have developed an app on a Window PC using Python and wxPython. For the several weeks I have been trying to migrate it to a MAC mini running 10.9, Python 2.7.6 (32/64 bit) using the Eclipse IDE with PyDev. I was NOT a MAC user prior to about three weeks ago when I purchased a used Mac mini and started working on it. Due to the fact that wxPython is a 32-bit library only I am running Python in 32-bit mode out of Eclipse - this has worked well until now I am ready to attempt and produce a stand alone app via cx_freeze and I am hitting a problem that cx_freeze is building the bundle using the 64-bit Python and it will not work with my 32-bit wx_Python library.
My question is what can I do at this point in time? Obviously, if I had been smart I would have installed the 32-bit ONLY version of Python 2.7.6 (hind sight you know), but I did not. I have gone through all the write to /Library/Preferences/com.apple.python.preference file and setting environment variables only to learn that that does not apply except to Apple installs. One solution would be to install the 32-bit ONLY Python - scared I will mess my current development environment up so that is why I am asking here for help. Also, there may be a setting in cx_freeze to accomplish this too. Any help to a "green horn" MAC person would be greatly appreciated.

paperclip image broken in rails 3.1rc4

I am using rails 3.1rc4 with paperclip and i cannot upload any image file with. I keep getting this error
Image D:/Users/MOBILE/AppData/Local/Temp/stream20110612-3872-y7hmme-0.jpg is not recognized by the 'identify' command. I have imagemagic installed. But it works in <= rails 3.0.8rc4.
I'm on Mac and I had the exact same problem after I updated to Mac OS Lion,
in order to fix this error I had to reinstall imagemagick
This might help other Mac OS Lion users:
First make sure to download the latest XCode from the app store (4.1 atm I believe, it's free)
Using Homebrew:
brew uninstall imagemagick
brew update
if you get any errors, clean up files ending in .a or .la with "brew doctor",
then just do
brew install imagemagick
If you are using MacPorts do:
port uninstall imagemagick
port selfupdate
port install imagemagick
I am not sure if this will adress your specific issue but I found this and maybe its related:
https://github.com/thoughtbot/paperclip/issues/481
It states:
The paperclip:refresh:metadata rake task fails with Rails 3.1 as ActiveRecord no longer supports instance.save(false) - you must now use instance.save(:validate => false) instead.