blob: 5b21122c7d7c0976eb375932bccd82b94ad49db7 (
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
|
# Default settings for GCC Explorer.
compileTimeoutMs=20000
binaryExecTimeoutMs=10000
defaultSource=builtin
cacheConfig=InMemory(50)
executableCacheConfig=InMemory(50)
apiMaxAgeSecs=600
maxConcurrentCompiles=4
staticMaxAgeSecs=1
maxUploadSize=16mb
supportsExecute=true
optionsAllowedRe=.*
# For local instances, you can use optionsForbiddenRe for extra hardening - preventing clang plugins etc. Today the live site uses nsjail instead.
# optionsForbiddenRe=^(-W[alp],)?((--?(wrapper|fplugin.*|specs|load|plugin|include|fmodule-mapper)|(@.*)|-I|-i)(=.*)?|--)$
allowedShortUrlHostRe=^([-a-z.]+\.)?(xania|godbolt)\.org$
googleShortLinkRewrite=^https?://goo.gl/(.*)$|https://godbolt.org/g/$1
urlShortenService=default
storageSolution=local
localStorageFolder=./lib/storage/data/
showSponsors=false
compilerCacheConfig=OnDisk(out/compiler-cache,1024)
demanglerType=default
objdumperType=default
python3=/usr/bin/python3
cvCompilerCountMax=15
textBanner=Compilation provided by Compiler Explorer at https://godbolt.org/
# If you run your own public instance of Compiler Explorer you are encouraged to write your own cookie policy and
# privacy policy, and then to enable both these below.
cookiePolicyEnabled=false
privacyPolicyEnabled=false
supportsLibraryCodeFilter=false
ldPath=${exePath}/../lib|${exePath}/../lib32|${exePath}/../lib64
ceToolsPath=../compiler-explorer-tools
remoteStorageServer=https://godbolt.org
# this timeout exists only to work around a bug (#1875)
# it is set to 5 minutes so that it will never be triggered
# under any normal circumstances
compilationEnvTimeoutMs=300000
# this timeout determines when a compilation in the queue is abandoned because it has been waiting too long and the
# client will have given up on it by now
compilationStaleAfterMs=100000
cmake=cmake
useninja=false
ld=ld
readelf=readelf
mkfifo=/usr/bin/mkfifo
heaptrackPath=
# set this true to keep temporary folders for a while for debugging purposes
delayCleanupTemp=false
thirdPartyIntegrationEnabled=true
statusTrackingEnabled=true
|