Skip to content

Commit db74e19

Browse files
committed
Added -j to the make commands and another final note
1 parent f9ed89a commit db74e19

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Either [download a release here][1] and use the prebuilt library and the headers
1616

1717
Alternatively easily build it yourself:
1818
1. Clone the repository: `git clone --recursive https://github.com/mhahnFr/CallstackLibrary.git`
19-
2. Build it: `cd CallstackLibrary && make`
19+
2. Build it: `cd CallstackLibrary && make -j`
2020
3. Link your code with `-L<path/to/library> -lcallstack`
2121

2222
Now, you can use the headers [`callstack.h`][2] and [`callstack_exception.hpp`][5], respectively.
@@ -30,19 +30,19 @@ Get started by either downloading a prebuilt version of this library [here][1].
3030
Alternatively you can also build it from source:
3131
1. Clone the repository: `git clone --recursive https://github.com/mhahnFr/CallstackLibrary.git`
3232
2. go into the cloned repository: `cd CallstackLibrary`
33-
3. and build the library: `make`
33+
3. and build the library: `make -j`
3434

3535
Or in one step:
3636
```shell
37-
git clone --recursive https://github.com/mhahnFr/CallstackLibrary.git && cd CallstackLibrary && make
37+
git clone --recursive https://github.com/mhahnFr/CallstackLibrary.git && cd CallstackLibrary && make -j
3838
```
3939

4040
To enable the optional **C++** exclusive functions add `CXX_FUNCTIONS=true` as argument to `make`.
4141

4242
> [!TIP]
4343
> **Example**:
4444
> ```shell
45-
> make CXX_FUNCTIONS=true
45+
> make -j CXX_FUNCTIONS=true
4646
> ```
4747
4848
> [!NOTE]
@@ -294,6 +294,9 @@ supported:
294294
On Linux the debug information available in the **ELF** binaries is used.
295295
296296
## Final notes
297+
If you experience any problems with the CallstackLibrary or if you have ideas to further improve this library don't
298+
hesitate to [open an issue][9] or a [pull request][10].
299+
297300
This library is licensed under the terms of the GNU GPL in version 3 or later.
298301
299302
© Copyright 2022 - 2024 [mhahnFr][4]
@@ -306,3 +309,5 @@ This library is licensed under the terms of the GNU GPL in version 3 or later.
306309
[6]: https://github.com/mhahnFr/CallstackLibrary/wiki/Home#enabling-additional-c-exclusive-functions
307310
[7]: #callstacks
308311
[8]: https://github.com/mhahnFr/CallstackLibrary/wiki/callstack.hpp#class-callstack
312+
[9]: https://github.com/mhahnFr/CallstackLibrary/issues/new
313+
[10]: https://github.com/mhahnFr/CallstackLibrary/pulls

0 commit comments

Comments
 (0)