blob: a5459b665e4c3d71ae6295e5e1d677cd9b4f6f4d (
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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
#include "slang-unix-cpp-compiler-util.h"
#include "../slang-common.h"
#include "../slang-process-util.h"
#include "../slang-string-util.h"
#include "../slang-shared-library.h"
#include "../slang-io.h"
// The method used to invoke VS was originally inspired by some ideas in
// https://github.com/RuntimeCompiledCPlusPlus/RuntimeCompiledCPlusPlus/
namespace Slang {
/* static */void UnixCPPCompilerUtil::calcArgs(const CPPCompileOptions& options, CommandLine& cmdLine)
{
typedef CPPCompileOptions::OptimizationLevel OptimizationLevel;
typedef CPPCompileOptions::TargetType TargetType;
typedef CPPCompileOptions::DebugInfoType DebugInfoType;
cmdLine.addArg("-fvisibility=hidden");
// Use shared libraries
//cmdLine.addArg("-shared");
switch (options.optimizationLevel)
{
case OptimizationLevel::Debug:
{
// No optimization
cmdLine.addArg("-O0");
break;
}
case OptimizationLevel::Normal:
{
cmdLine.addArg("-Os");
break;
}
default: break;
}
if (options.debugInfoType != DebugInfoType::None)
{
cmdLine.addArg("-g");
}
switch (options.targetType)
{
case TargetType::SharedLibrary:
{
// Position independent
cmdLine.addArg("-fPIC");
String sharedLibraryPath;
// Work out the shared library name
{
String moduleDir = Path::getParentDirectory(options.modulePath);
String moduleFilename = Path::getFileName(options.modulePath);
StringBuilder sharedLibraryFilename;
SharedLibrary::appendPlatformFileName(moduleFilename.getUnownedSlice(), sharedLibraryFilename);
if (moduleDir.getLength() > 0)
{
sharedLibraryPath = Path::combine(moduleDir, sharedLibraryFilename);
}
else
{
sharedLibraryPath = sharedLibraryFilename;
}
}
cmdLine.addArg("-o");
cmdLine.addArg(sharedLibraryPath);
break;
}
case TargetType::Executable:
{
cmdLine.addArg("-o");
StringBuilder builder;
builder << options.modulePath;
builder << ProcessUtil::getExecutableSuffix();
cmdLine.addArg(options.modulePath);
break;
}
case TargetType::Object:
{
// Don't link, just produce object file
cmdLine.addArg("-c");
break;
}
default: break;
}
// Add defines
for (const auto& define : options.defines)
{
StringBuilder builder;
builder << define.nameWithSig;
if (define.value.getLength())
{
builder << "=" << define.value;
}
cmdLine.addArg(builder);
}
// Add includes
for (const auto& include : options.includePaths)
{
cmdLine.addArg("-I");
cmdLine.addArg(include);
}
// Link options
if (0)
{
StringBuilder linkOptions;
linkOptions << "Wl,";
cmdLine.addArg(linkOptions);
}
// Files to compile
for (const auto& sourceFile : options.sourceFiles)
{
cmdLine.addArg(sourceFile);
}
for (const auto& libPath : options.libraryPaths)
{
// Note that any escaping of the path is handled in the ProcessUtil::
cmdLine.addArg("-L");
cmdLine.addArg(libPath);
cmdLine.addArg("-F");
cmdLine.addArg(libPath);
}
}
/* static */SlangResult UnixCPPCompilerUtil::executeCompiler(const CommandLine& commandLine, ExecuteResult& outResult)
{
CommandLine cmdLine;
// We'll assume g++ for now
cmdLine.setExecutableFilename("g++");
// Append the command line options
cmdLine.addArgs(commandLine.m_args.getBuffer(), commandLine.m_args.getCount());
#if 0
// Test
{
String line = ProcessUtil::getCommandLineString(cmdLine);
printf("%s", line.getBuffer());
}
#endif
return ProcessUtil::execute(cmdLine, outResult);
}
} // namespace Slang
|