SConstruct 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # -*- coding: utf-8; mode: Python -*-
  2. # (c) Daniel Llorens - 2015-2016, 2018-2019
  3. # This library is free software; you can redistribute it and/or modify it under
  4. # the terms of the GNU Lesser General Public License as published by the Free
  5. # Software Foundation; either version 3 of the License, or (at your option) any
  6. # later version.
  7. # SConstruct for ra/examples
  8. # FIXME Shared pieces with {test,bench,docs}/SConstruct
  9. import os, string, atexit
  10. from os.path import join, abspath
  11. import imp
  12. ra = imp.load_source('ra', '../config/ra.py')
  13. # FIXME pick BLAS flags from here.
  14. try:
  15. Import('top')
  16. except:
  17. top = {}
  18. vars = Variables()
  19. vars.AddVariables(PathVariable('variant_dir', 'build directory', '.', PathVariable.PathIsDirCreate))
  20. env = Environment(options=vars,
  21. ENV=dict([(k, os.environ[k] if k in os.environ else '')
  22. for k in ['PATH', 'HOME', 'TERM', 'LD_RUN_PATH', 'DYLD_LIBRARY_PATH',
  23. 'RPATH', 'LIBRARY_PATH', 'TEXINPUTS', 'GCC_COLORS', 'BOOST_ROOT',
  24. 'RA_USE_BLAS']]))
  25. variant_dir = env['variant_dir']
  26. for var, default in [('CC', 'gcc'), ('CXX', 'g++'), ('FORTRAN', 'gfortran')]:
  27. ra.take_from_environ(env, var, default=default)
  28. for var in ['FORTRANFLAGS', 'LINKFLAGS', 'CCFLAGS', 'CXXFLAGS']:
  29. ra.take_from_environ(env, var, wrapper=string.split)
  30. for var in ['RPATH', 'LIBPATH']:
  31. ra.take_from_environ(env, var, wrapper=lambda x: [x])
  32. arch = os.popen('../config/config.guess').read()
  33. if arch.find('apple-darwin') >= 0:
  34. archflags=['-march=native', '-Wa,-q']
  35. ld_blas = {'LINKFLAGS': ' -framework Accelerate ', 'LIBS': []}
  36. else:
  37. archflags=['-march=native']
  38. ld_blas = {'LINKFLAGS': '', 'LIBS': ['blas']}
  39. env.Prepend(CPPPATH=['..', '.'],
  40. CCFLAGS=archflags if str(env['CCFLAGS']).strip()=='' else '',
  41. CXXFLAGS=['-std=c++17', '-Wall', '-Werror', '-fdiagnostics-color=always', '-Wno-unknown-pragmas',
  42. '-finput-charset=UTF-8', '-fextended-identifiers',
  43. '-Wno-error=strict-overflow', '-Werror=zero-as-null-pointer-constant',
  44. #'-Wconversion',
  45. # '-funsafe-math-optimizations', # TODO Test with this.
  46. ])
  47. env_blas = env.Clone()
  48. if 'RA_USE_BLAS' in env['ENV'] and env['ENV']['RA_USE_BLAS']=='1':
  49. print("[%s] BLAS will be used." % Dir('.').path)
  50. env_blas.Append(CPPDEFINES={'RA_USE_BLAS': 1})
  51. env_blas.Append(LINKFLAGS=ld_blas['LINKFLAGS'])
  52. env_blas.Append(LIBS=ld_blas['LIBS'])
  53. else:
  54. print("[%s] BLAS won't be used." % Dir('.').path)
  55. [ra.to_test_ra(env, variant_dir)(example)
  56. for example in ['view', 'outer', 'slicing', 'where-pick', 'rangexpr', 'useret', 'deriv',
  57. 'indirect', 'cast', 'nested', 'agreement', 'small', 'readme',
  58. 'explode-collapse', 'newton', 'maxwell', 'laplace2d', 'laplace3d',
  59. 'throw']]
  60. if 'skip_summary' not in top:
  61. atexit.register(lambda: ra.print_summary(GetBuildFailures, 'ra/examples'))