-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvmakefile.lua
executable file
·149 lines (111 loc) · 4.05 KB
/
vmakefile.lua
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/usr/bin/env lua
require "vmake-edge"
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Configurations
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Configuration "debug" {
Data = {
Opts_CXX = List "-fno-omit-frame-pointer -g3",
},
}
Configuration "release" {
Data = {
Opts_CXX = List "-DNEDEBUG",
},
}
Configuration "profile" {
Data = {
Opts_CXX = List { },
},
Base = "release",
}
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Architectures
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Architecture "any"
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Toolchain
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
GlobalData {
CXX = "c++",
LO = "c++",
LD = "c++",
}
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Tests
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Ditto.
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Dependency Management
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
local settMakeDeps = true
CmdOpt "no-make-deps" {
Description = "Indicates that GNU Make dependency files are not to be"
.. "\ngenerated by GCC, G++ or GAS.",
Handler = function(_, val) settMakeDeps = false end,
}
GlobalData {
UseMakeDependencies = function()
return settMakeDeps
end,
}
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Options and Parameters
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
GlobalData {
Opts_CXX_Preprocessor = function()
local res = List {
"-DVERMILION",
"-DVERMILION__ARCH=" .. selArch.Name,
"-DVERMILION__CONF=" .. selConf.Name,
} --+ Opts_CXX_Tests
for arch in selArch:Hierarchy() do
res:Append("-DVERMILION__ARCH_" .. _G.string.upper(arch.Name))
end
for conf in selConf:Hierarchy() do
res:Append("-DVERMILION__CONF_" .. _G.string.upper(conf.Name))
end
return res
end,
Opts_CXX_Common = function()
local res = List "-pipe -Wall -Wextra -Wpedantic" + Opts_CXX_Preprocessor + selConf.Data.Opts_CXX
if settMakeDeps then
res:Append("-MD"):Append("-MP")
end
return res
end,
Opts_LLVM_Preprocessor = DataFromCommand("llvm-config --cppflags"),
Opts_LLVM_CXX = DataFromCommand("llvm-config --cxxflags"),
Opts_LLVM_LD = DataFromCommand("llvm-config --ldflags"),
LLVM_Libraries = DataFromCommand("llvm-config --libs"),
}
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Main File Locations
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
GlobalData {
CompilerPath = DAT "outDir + 'vermc'",
}
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Projects
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
ManagedProject "Compiler" {
Languages = { "C++" },
Target = "Executable",
Data = {
BinaryPath = DAT "CompilerPath",
PrecompiledCppHeader = "common.hpp",
Opts_CXX = LST "-std=gnu++11 -flto -DVERMILION_COMPILER !Opts_CXX_Common !Opts_Includes !Opts_LLVM_Preprocessor",
Opts_LD = LST "-fuse-linker-plugin !Opts_CXX !Opts_LLVM_LD",
Opts_Libraries = function()
return Libraries:Select(L "|val| '-l' .. val") + LLVM_Libraries
end,
},
Directory = "compiler",
Output = DAT "CompilerPath",
CreateMissingDirectoriesRule(true),
}
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Wrap up
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
Default "Compiler" "any" "debug"
vmake()