@@ -16,7 +16,7 @@ Either [download a release here][1] and use the prebuilt library and the headers
1616
1717Alternatively easily build it yourself:
18181 . 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 `
20203 . Link your code with ` -L<path/to/library> -lcallstack `
2121
2222Now, 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].
3030Alternatively you can also build it from source:
31311 . Clone the repository: ` git clone --recursive https://github.com/mhahnFr/CallstackLibrary.git `
32322 . go into the cloned repository: ` cd CallstackLibrary `
33- 3 . and build the library: ` make `
33+ 3 . and build the library: ` make -j `
3434
3535Or 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
4040To 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:
294294On 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+
297300This 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