You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
343 B
20 lines
343 B
#!/usr/bin/env python
|
|
|
|
|
|
import confu
|
|
parser = confu.standard_parser("FP16 configuration script")
|
|
|
|
|
|
def main(args):
|
|
options = parser.parse_args(args)
|
|
build = confu.Build.from_options(options)
|
|
|
|
build.export_cpath("include", ["psimd.h"])
|
|
|
|
return build
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import sys
|
|
main(sys.argv[1:]).generate()
|