Skip to content

Commit

Permalink
build: add WebAssembly configuration for math/base/special/absf
Browse files Browse the repository at this point in the history
PR-URL: stdlib-js#3023
Reviewed-by: Athan Reines <[email protected]>
  • Loading branch information
aman-095 authored and aayush0325 committed Nov 11, 2024
1 parent b58fd42 commit 1931b51
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/absf/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 All @@ -43,6 +45,7 @@
},
{
"task": "benchmark",
"wasm": false,
"src": [
"./src/main.c"
],
Expand All @@ -58,6 +61,23 @@
},
{
"task": "examples",
"wasm": false,
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/constants/float32/abs-mask",
"@stdlib/number/float32/base/to-word"
]
},
{
"task": "build",
"wasm": true,
"src": [
"./src/main.c"
],
Expand Down

0 comments on commit 1931b51

Please sign in to comment.