Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dfreniche/xc-launch
A small script to launch Xcode using a RAM disk
https://github.com/dfreniche/xc-launch
Last synced: 11 days ago
JSON representation
A small script to launch Xcode using a RAM disk
- Host: GitHub
- URL: https://github.com/dfreniche/xc-launch
- Owner: dfreniche
- Created: 2013-12-31T18:47:27.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-04-18T09:17:16.000Z (over 7 years ago)
- Last Synced: 2023-11-07T21:18:07.448Z (about 1 year ago)
- Language: Shell
- Size: 146 KB
- Stars: 104
- Watchers: 7
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# xc-launch
```
____________________________
/ /\ ██╗ ██╗ ██████╗ ██╗ █████╗ ██╗ ██╗███╗ ██╗ ██████╗██╗ ██╗
/ _/ /\ ╚██╗██╔╝██╔════╝ ██║ ██╔══██╗██║ ██║████╗ ██║██╔════╝██║ ██║
/ xc-launch / \/ ╚███╔╝ ██║█████╗██║ ███████║██║ ██║██╔██╗ ██║██║ ███████║
/ /\ ██╔██╗ ██║╚════╝██║ ██╔══██║██║ ██║██║╚██╗██║██║ ██╔══██║
/___________________________/ / ██╔╝ ██╗╚██████╗ ███████╗██║ ██║╚██████╔╝██║ ╚████║╚██████╗██║ ██║
\___________________________\/ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═════╝╚═╝ ╚═╝
\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ ... your derived data folder in RAM```
This is a small script to launch Xcode using a RAM disk to store intermediate build products files, normally found in `DerivedData`.
## Motivation
After some time using Xcode, the DerivedData folder tends to grow. In my secondary development machine takes now 1.8 GB. Creating all these files in a RAM Disk destroys everything after switching off your machine (or ejecting the drive). Also, if you have enough memory, it speeds up compiling (everything happens in RAM)
This problem is shown here:
[https://twitter.com/mindbrix/status/412929707727159296]()Also, in [this StackOverflow](http://stackoverflow.com/questions/18933321/deleting-contents-from-xcode-derived-data-folder) discussion
## Installation
1. Just copy this script somewhere in your PATH, for instance to `/usr/local/bin` (using for example `cp xc-launch.sh /usr/local/bin`)
2. Grant it executable permissions: `chmod a+x xc-launch.sh`To make use of it, you __need__ to change your Xcode preferences
1. Go to Xcode > Preferences > Locations
2. Point Derived Data to /Volumes/ramdisk[![](https://raw.github.com/dfreniche/xc-launch/master/img/locations.png)](https://raw.github.com/dfreniche/xc-launch/master/img/locations.png)
You don't need to be root to run this :-)
When you finish, eject your ramdisk using the Finder.
## Works in
- macOS 10.9 - 10.12 - OK
- Xcode 6, 7, 8Others: let me know, should work
## Will this thing make compilation faster?
I haven't timed it. Maybe using `time` and `xcodebuild` from command line with the same project, on average would be a good way to measure it.
But I use this script mainly __because everything gets created in memory__:
- less stress put on my SSD
- no GB lost somewhere else in my HD## How do you launch this?
Personally I use the terrific [DTerm](http://decimus.net/dterm), with a shortcut of Cmd + Alt + Ctrl + T (for Terminal), then use autocomplete to launch `xc-launch.sh`
![](img/dterm.png)
## Licenses
Distributed under the [MIT](http://en.wikipedia.org/wiki/MIT_License) & [Anyone but Richard Stallman](https://github.com/landondyer/kasm/blob/master/LICENSE) licenses ;-)
### MIT - Licence
Copyright (c) 2013 Diego Freniche
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.