Skip to content
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

Update README.md with FreeBSD source download instructions #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ check.

### 2. Prepare the OS environment

#### 2.0 Download FreeBSD source
After cloning the repository, you will need to download FreeBSD 13.1 source and place it under `sysroot-src`
```
git clone --depth=1 --branch release/13.1.0 https://github.com/freebsd/freebsd-src.git sysroot-src
```

You may either use the sysroot or jail method to get your environment running.

#### 2.1 Sysroot (Method 1)
Expand All @@ -46,6 +52,7 @@ scons llvm
### 4. Build the system and associated tests

```
(cd lib/Pass && cmake . && make)
scons
```

Expand Down