boost.cxx 1.90.5 → 1.90.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -32,21 +32,22 @@ int main() { /* ... */ }
|
|
|
32
32
|
Finally, compile while adding the path `node_modules/boost.cxx` to your compiler's include paths.
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
|
-
$ clang++ -I./node_modules/boost.cxx main.cxx # or, use g++
|
|
36
|
-
$ g++ -I./node_modules/boost.cxx main.cxx
|
|
35
|
+
$ clang++ -std=c++17 -I./node_modules/boost.cxx main.cxx # or, use g++
|
|
36
|
+
$ g++ -std=c++17 -I./node_modules/boost.cxx main.cxx
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
You may also use a simpler approach with the [cpoach](https://www.npmjs.com/package/cpoach.sh) tool, which automatically adds the necessary include paths of all the installed dependencies for your project.
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
$ cpoach clang++ main.cxx # or, use g++
|
|
43
|
-
$ cpoach g++ main.cxx
|
|
42
|
+
$ cpoach clang++ -std=c++17 main.cxx # or, use g++
|
|
43
|
+
$ cpoach g++ -std=c++17 main.cxx
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
<br>
|
|
47
47
|
<br>
|
|
48
48
|
|
|
49
49
|
|
|
50
|
+
[](https://wolfram77.github.io)<br>
|
|
50
51
|
[](https://github.com/boostorg/boost)
|
|
51
52
|
[](https://nodef.github.io)
|
|
52
53
|

|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
#
|
|
3
|
-
# Copyright (C) 2000 Stephen Cleary
|
|
4
|
-
#
|
|
5
|
-
# Distributed under the Boost Software License, Version 1.0. (See accompany-
|
|
6
|
-
# ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
7
|
-
#
|
|
8
|
-
# See http://www.boost.org for updates, documentation, and revision history.
|
|
9
|
-
#
|
|
10
|
-
|
|
11
|
-
m4 -P -E -DNumberOfArguments=$1 pool_construct.m4 > pool_construct.ipp
|
|
12
|
-
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2000 Stephen Cleary
|
|
4
|
+
#
|
|
5
|
+
# Distributed under the Boost Software License, Version 1.0. (See accompany-
|
|
6
|
+
# ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
7
|
+
#
|
|
8
|
+
# See http://www.boost.org for updates, documentation, and revision history.
|
|
9
|
+
#
|
|
10
|
+
|
|
11
|
+
m4 -P -E -DNumberOfArguments=$1 pool_construct.m4 > pool_construct.ipp
|
|
12
|
+
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
#
|
|
3
|
-
# Copyright (C) 2001 Stephen Cleary
|
|
4
|
-
#
|
|
5
|
-
# Distributed under the Boost Software License, Version 1.0. (See accompany-
|
|
6
|
-
# ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
7
|
-
#
|
|
8
|
-
# See http://www.boost.org for updates, documentation, and revision history.
|
|
9
|
-
#
|
|
10
|
-
|
|
11
|
-
m4 -P -E -DNumberOfArguments=$1 pool_construct_simple.m4 > pool_construct_simple.ipp
|
|
12
|
-
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2001 Stephen Cleary
|
|
4
|
+
#
|
|
5
|
+
# Distributed under the Boost Software License, Version 1.0. (See accompany-
|
|
6
|
+
# ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
7
|
+
#
|
|
8
|
+
# See http://www.boost.org for updates, documentation, and revision history.
|
|
9
|
+
#
|
|
10
|
+
|
|
11
|
+
m4 -P -E -DNumberOfArguments=$1 pool_construct_simple.m4 > pool_construct_simple.ipp
|
|
12
|
+
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "boost.cxx",
|
|
3
|
-
"version": "1.90.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.90.7",
|
|
4
|
+
"description": "A collection of high-quality, free, and open-source libraries that extend the functionality of the C++ programming language; Dawes et al. (1998).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"c++",
|
|
7
7
|
"library",
|