FB_GCC
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbgcc
- Last revised: 2020-01-25
Intrinsic define set by the compiler
Syntax
` FB_GCC
`
Description
Defined to true (-1) if -gen gcc is used, or false (0) otherwise.
Examples
start GeSHi
vb
#if __FB_GCC__ <> 0
#print Backend Code Emitter And Assembler: gcc
#else
#print Backend Code Emitter And Assembler: Not gcc
#endifend GeSHi
Differences from QB
- Did not exist in QB
Back to DocToc