diff options
author | Peter Kokot <peterkokot@gmail.com> | 2019-04-21 15:33:20 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-04-21 15:33:20 +0200 |
commit | 1c94aac89e0d7dfbd5efc15ec1862214b22603d1 (patch) | |
tree | d03f294d1354b121d5f8bf0daa681f92c750bed1 /README.md | |
parent | 80f3c69ae925b09068b0642306a8a14a42c7d25c (diff) | |
download | php-git-1c94aac89e0d7dfbd5efc15ec1862214b22603d1.tar.gz |
[ci skip] Fix CS in Markdown files
Checked and quickfixed with Markdown linter
- 80 columns line width (~)
- code highlighting
- ...
Some most obvious outdated content updated a bit more.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 21 |
1 files changed, 14 insertions, 7 deletions
@@ -48,23 +48,29 @@ PHP uses autotools on Unix systems to configure the build: *See `make -h` for make options.* -The `-j` option shall set the maximum number of jobs `make` can use for the build: +The `-j` option shall set the maximum number of jobs `make` can use for the +build: make -j4 -Shall run `make` with a maximum of 4 concurrent jobs: Generally the maximum number of jobs should not exceed the number of cores available. +Shall run `make` with a maximum of 4 concurrent jobs: Generally the maximum +number of jobs should not exceed the number of cores available. ## Testing PHP source code -PHP ships with an extensive test suite, the command `make test` is used after successful compilation of the sources to run this test suite. +PHP ships with an extensive test suite, the command `make test` is used after +successful compilation of the sources to run this test suite. -It is possible to run tests using multiple cores by setting `-jN` in `TEST_PHP_ARGS`: +It is possible to run tests using multiple cores by setting `-jN` in +`TEST_PHP_ARGS`: make TEST_PHP_ARGS=-j4 test -Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum number of jobs should not exceed the number of cores available. +Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum +number of jobs should not exceed the number of cores available. -The [qa.php.net](https://qa.php.net) site provides more detailed info about testing and quality assurance. +The [qa.php.net](https://qa.php.net) site provides more detailed info about +testing and quality assurance. ## Installing PHP built from source @@ -72,7 +78,8 @@ After a successful build (and test), PHP may be installed with: make install -Depending on your permissions and prefix, `make install` may need super user permissions. +Depending on your permissions and prefix, `make install` may need super user +permissions. ## PHP extensions |