aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/module
blob: 09f5e5abffb435087c520b54679baf6c72765599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// file      : build2/cc/module -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD2_CC_MODULE
#define BUILD2_CC_MODULE

#include <build2/types>
#include <build2/utility>

#include <build2/module>
#include <build2/variable>

#include <build2/cc/common>

#include <build2/cc/compile>
#include <build2/cc/link>
#include <build2/cc/install>

namespace build2
{
  namespace cc
  {
    struct compiler_info;

    class config_module: public module_base, public virtual config_data
    {
    public:
      explicit
      config_module (config_data&& d) : config_data (move (d)) {}

      void
      init (scope&, const location&, const variable_map&);

      // Translate the x.std value to the standard-selecting option if there
      // is any.
      //
      virtual string
      translate_std (const compiler_info&, scope&, const string&) const = 0;

      string tstd;

    private:
      dir_paths
      gcc_library_search_paths (process_path&, scope&) const; // gcc.cxx

      dir_paths
      msvc_library_search_paths (process_path&, scope&) const; // msvc.cxx
    };

    class module: public module_base, protected virtual common,
                  link, compile, install
    {
    public:
      explicit
      module (data&& d)
          : common (move (d)),
            link (move (d)),
            compile (move (d), *this),
            install (move (d), *this) {}

      void
      init (scope&, const location&, const variable_map&);
    };
  }
}

#endif // BUILD2_CC_MODULE