Merge pull request #116 from LucasSnatiago/master

[feat] added Arch commands
This commit is contained in:
Daniel Beer 2022-03-21 15:55:37 +13:00 committed by GitHub
commit 5284713769
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

7
README
View File

@ -33,7 +33,8 @@ Compiling from source
Ensure that you have the necessary packages to compile programs that use Ensure that you have the necessary packages to compile programs that use
libusb (on Debian or Ubuntu systems, you might need to do apt-get libusb (on Debian or Ubuntu systems, you might need to do apt-get
install libusb-dev). After that, unpack and compile the source code install libusb-dev | on Arch systems, you might need to do sudo
pacman -S libusb-compact). After that, unpack and compile the source code
with: with:
tar xvfz mspdebug-version.tar.gz tar xvfz mspdebug-version.tar.gz
@ -41,8 +42,8 @@ with:
make make
On Debian Ubuntu systems sudo apt-get install libreadline-dev may be On Debian Ubuntu systems sudo apt-get install libreadline-dev may be
required. If you don't want GNU readline support, you can invoke make required. On Arch systems sudo pacman -S readline may be required.
with: If you don't want GNU readline support, you can invoke make with:
make WITHOUT_READLINE=1 make WITHOUT_READLINE=1