Skip to content

Commit

Permalink
build: add WebAssembly configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Oct 2, 2024
1 parent c20c2c3 commit 4531104
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/ldexp/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"options": {
"task": "build"
"task": "build",
"wasm": false
},
"fields": [
{
Expand All @@ -27,6 +28,7 @@
"confs": [
{
"task": "build",
"wasm": false,
"src": [
"./src/main.c"
],
Expand Down Expand Up @@ -54,6 +56,7 @@
},
{
"task": "examples",
"wasm": false,
"src": [
"./src/main.c"
],
Expand Down Expand Up @@ -84,6 +87,35 @@
},
{
"task": "benchmark",
"wasm": false,
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/math/base/assert/is-infinite",
"@stdlib/math/base/assert/is-nan",
"@stdlib/math/base/special/abs",
"@stdlib/number/float64/base/normalize",
"@stdlib/number/float64/base/exponent",
"@stdlib/number/float64/base/from-words",
"@stdlib/number/float32/base/to-word",
"@stdlib/math/base/special/copysign",
"@stdlib/constants/float64/ninf",
"@stdlib/constants/float64/pinf",
"@stdlib/constants/float64/min-base2-exponent-subnormal",
"@stdlib/constants/float64/max-base2-exponent",
"@stdlib/constants/float64/max-base2-exponent-subnormal",
"@stdlib/constants/float64/exponent-bias"
]
},
{
"task": "build",
"wasm": true,
"src": [
"./src/main.c"
],
Expand Down

0 comments on commit 4531104

Please sign in to comment.