forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build docs that refer to old makefile.* files.
Also update pull-tester's error message.
- Loading branch information
1 parent
16d5f2c
commit 2b91707
Showing
3 changed files
with
15 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,12 +56,13 @@ Installing the dependencies using MacPorts is very straightforward. | |
|
||
2. Build bitcoind: | ||
|
||
cd src | ||
make -f makefile.osx | ||
./autogen.sh | ||
./configure | ||
make | ||
|
||
3. It is a good idea to build and run the unit tests, too: | ||
|
||
make -f makefile.osx test | ||
make test | ||
|
||
Instructions: HomeBrew | ||
---------------------- | ||
|
@@ -89,22 +90,15 @@ Rerunning "openssl version" should now return the correct version. | |
git clone [email protected]:bitcoin/bitcoin.git bitcoin | ||
cd bitcoin | ||
|
||
2. Modify source in order to pick up the `openssl` library. | ||
|
||
Edit `makefile.osx` to account for library location differences. There's a | ||
diff in `contrib/homebrew/makefile.osx.patch` that shows what you need to | ||
change, or you can just patch by doing | ||
|
||
patch -p1 < contrib/homebrew/makefile.osx.patch | ||
|
||
3. Build bitcoind: | ||
2. Build bitcoind: | ||
|
||
cd src | ||
make -f makefile.osx | ||
./autogen.sh | ||
./configure | ||
make | ||
|
||
4. It is a good idea to build and run the unit tests, too: | ||
3. It is a good idea to build and run the unit tests, too: | ||
|
||
make -f makefile.osx test | ||
make test | ||
|
||
Creating a release build | ||
------------------------ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters