diff options
author | oltolm <oleg.tolmatcev@gmail.com> | 2017-12-31 14:49:42 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-12-31 14:49:42 +0100 |
commit | 42cff6e0c5d9a818ed2a788b2c4207ac389d3092 (patch) | |
tree | 45c919d6f494f1cebd010059b937c75801015a01 /compiler | |
parent | d1e10f9aa3e033414fb924e4f90736e46fde8256 (diff) | |
download | Nim-42cff6e0c5d9a818ed2a788b2c4207ac389d3092.tar.gz |
add support for building GUI applications with TCC (#7003)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/extccomp.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim index 5299b2dbf..62990593d 100644 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -253,7 +253,7 @@ compiler tcc: compilerExe: "tcc", cppCompiler: "", compileTmpl: "-c $options $include -o $objfile $file", - buildGui: "UNAVAILABLE!", + buildGui: "-Wl,-subsystem=gui", buildDll: " -shared", buildLib: "", # XXX: not supported yet linkerExe: "tcc", |