@@ -163,7 +163,7 @@ resolve_includes() {
163
163
if [[ -n " ${blas} " ]]; then
164
164
opts=" {'os':'${os} ','blas':'${blas} ','task':'benchmark'}"
165
165
else
166
- opts=" {'task':'benchmark'}"
166
+ opts=" {'os':' ${os} ',' task':'benchmark'}"
167
167
fi
168
168
# Generate the script for resolving `include` directories:
169
169
script=' "' " var path = require('path'); var arr = require('@stdlib/utils/library-manifest')(path.join('$1 ','manifest.json'),${opts} ,{'basedir':'$1 ','paths':'posix'}).include; var str = ''; for (var i = 0; i < arr.length; i++){var p = path.resolve('$1 ', arr[i]); str += '-I '+p+' ';}; console.log(str.substring(0, str.length-1));" ' "'
@@ -194,7 +194,7 @@ resolve_source_files() {
194
194
if [[ -n " ${blas} " ]]; then
195
195
opts=" {'os':'${os} ','blas':'${blas} ','task':'benchmark'}"
196
196
else
197
- opts=" {'task':'benchmark'}"
197
+ opts=" {'os':' ${os} ',' task':'benchmark'}"
198
198
fi
199
199
# Generate the script for resolving source files:
200
200
script=' "' " var path = require('path'); var arr = require('@stdlib/utils/library-manifest')(path.join('$1 ','manifest.json'),${opts} ,{'basedir':'$1 ','paths':'posix'}).src; var str = ''; for (var i = 0; i < arr.length; i++){var p = path.resolve('$1 ', arr[i]); str += p+' ';}; console.log(str.substring(0, str.length-1));" ' "'
@@ -217,7 +217,7 @@ resolve_libraries() {
217
217
if [[ -n " ${blas} " ]]; then
218
218
opts=" {'os':'${os} ','blas':'${blas} ','task':'benchmark'}"
219
219
else
220
- opts=" {'task':'benchmark'}"
220
+ opts=" {'os':' ${os} ',' task':'benchmark'}"
221
221
fi
222
222
# Generate the script for resolving libraries:
223
223
script=' "' " var path = require('path'); var arr = require('@stdlib/utils/library-manifest')(path.join('$1 ','manifest.json'),${opts} ,{'basedir':'$1 ','paths':'posix'}).libraries; var str = ''; for (var i = 0; i < arr.length; i++){str += arr[i]+' ';}; console.log(str.substring(0, str.length-1));" ' "'
@@ -240,7 +240,7 @@ resolve_libpaths() {
240
240
if [[ -n " ${blas} " ]]; then
241
241
opts=" {'os':'${os} ','blas':'${blas} ','task':'benchmark'}"
242
242
else
243
- opts=" {'task':'benchmark'}"
243
+ opts=" {'os':' ${os} ',' task':'benchmark'}"
244
244
fi
245
245
# Generate the script for resolving library paths:
246
246
script=' "' " var path = require('path'); var arr = require('@stdlib/utils/library-manifest')(path.join('$1 ','manifest.json'),${opts} ,{'basedir':'$1 ','paths':'posix'}).libpath; var str = ''; for (var i = 0; i < arr.length; i++){var p = path.resolve('$1 ', arr[i]); str += '-L '+p+' ';}; console.log(str.substring(0, str.length-1));" ' "'
0 commit comments