-
-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add initial Linux support #4
Conversation
This will allow building for platforms like Linux or macOS
case RuntimePlatform.LinuxPlayer: | ||
case RuntimePlatform.LinuxEditor: | ||
Debug.LogError("Host id is not implemented for Linux"); | ||
return "Linux-unknown"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that having a working host id is required for proper working of the Google Drive backup system.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure adding proper host id handling was on my todo list. The main goal here was to have a first version that compiles and that runs without exceptions
You might also find #21 to be relevant; the fixes for adb and rsync should help you as well (and it's possibly that the background build might work on Linux even though it doesn't work on OS X; I don't have an environment to test) |
@mikeage I just tested my branch rebased on top of yours and indeed it seems to be working well 👌 |
3222b32
to
b2a8faa
Compare
Superseded by #32 |
Early fixes and additions for the project to compile and run on Linux.