https://github.com/vasilescur/dartos
A toy operating system supposedly built in Dart. WIP.
https://github.com/vasilescur/dartos
Last synced: 3 months ago
JSON representation
A toy operating system supposedly built in Dart. WIP.
- Host: GitHub
- URL: https://github.com/vasilescur/dartos
- Owner: vasilescur
- Created: 2018-10-01T19:09:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-29T14:29:50.000Z (over 6 years ago)
- Last Synced: 2025-01-16T17:34:23.407Z (4 months ago)
- Language: C
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DartOS
[](https://travis-ci.com/vasilescur/DartOS)DartOS is a my way of learning operating system development, by building an operating system and then replacing as much as possible of the kernel, drivers, etc., with [Dart](http://www.dartlang.org).
## Requirements
- [QEMU](https://www.qemu.org/)
- `gcc` and the GNU binutils
- `make`## Usage
To run this program in the `qemu` emulator, simply run
```bash
make run
```### Building on MacOS
Mac comes with a fake version of GCC binutils, including a stripped down version of `ld` which does not support all the options needed to build this project. My workaround was to create an Ubuntu virtual machine with an `sshfs` shared directory, and `ssh` into the Ubuntu machine in order to build the project.
It is a futile effort to attempt to install the real `gcc` and binutils on a Mac; 6 hours have been wasted with this endeavor. Please update this number after you invaraibly reach the same conclusion.