-
Notifications
You must be signed in to change notification settings - Fork 885
Added a troubleshooting option. #265
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
base: main
Are you sure you want to change the base?
Conversation
Troubleshooting step if the `make` command fails.
Changes implemented according to repo owner's wish.
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.
All changes implemented.
|
Thanks for the feedback! |
|
Hi. Is this going to get merged or should I just close the pull request? Regards |
| 1. If, when executing a program, you see `error while loading shared libraries: libcs50.so.8: cannot open shared object file: No such file or directory`: | ||
| Add `export LD_LIBRARY_PATH=/usr/local/lib` to your `.bashrc`. | ||
| 1. If, when compiling a program, you see something similar to `undefined reference to 'get_int'`: | ||
| Create a `Makefile` inside the project folder, and paste the following `LDLIBS += -lcs50`. |
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.
This should really follow the same pattern as "Add ... to your .bashrc.
Troubleshooting step if the
makecommand fails.