Skip to content

Commit 1a3de25

Browse files
author
amo
committed
Removing section of libraries while extending image
1 parent e5852df commit 1a3de25

1 file changed

Lines changed: 0 additions & 16 deletions

File tree

images.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ Create the `hello.c` file as described above, then to compile our program run
6060
or1k-elf-gcc hello.c -o hello
6161
```
6262

63-
If you see errors related to missing dependencies while compiling, you can add the dependent libraries [by extending the docker image](#extending-the-docker-image)
64-
6563
After the program is compiled we can run the program in the simulator with the
6664
following:
6765

@@ -262,20 +260,6 @@ To add vim or other terminal based text editors while running docker you can ext
262260
$ vi hello.c
263261
```
264262

265-
5. In case you see missing dependent libraries while going through this tutorial (especially while compiling with `gcc` if you see libmpc3, libmpfr6, libgmp10 libraries missing), you can add these to the Dockerfile and compile without errors:
266-
267-
```bash
268-
FROM stffrdhrn/or1k-sim-env
269-
270-
# Install the terminal-based Vim & other dependent lib
271-
RUN apt-get update && apt-get install -y \
272-
libmpc3 \
273-
libmpfr6 \
274-
libgmp10 \
275-
vim \
276-
&& rm -rf /var/lib/apt/lists/*
277-
```
278-
279263
## Further Reading
280264

281265
- [stffrdhrn/or1k-docker-images](https://github.com/stffrdhrn/or1k-docker-images) - OpenRISC docker images home page

0 commit comments

Comments
 (0)