Changeset 43299af
- Timestamp:
- Dec 23, 2024, 11:28:47 AM (4 months ago)
- Branches:
- master
- Children:
- 4f4ae60
- Parents:
- a5e2786f
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified doc/man/cfa.1 ¶
ra5e2786f r43299af 57 57 .IP "-std=gnu11" 3 58 58 The 2011 C standard plus GNU extensions. 59 .IP "-fgnu89-inline"60 Use the traditional GNU semantics for inline routines in C11 mode, which allows inline routines in header files.61 59 .IP "-imacros stdbool.h" 62 60 Include stdbool.h to get defines for bool/true/false. -
TabularUnified doc/user/user.tex ¶
ra5e2786f r43299af 363 363 \Indexc{-std=gnu11}\index{compilation option!-std=gnu11@{©-std=gnu11©}} 364 364 The 2011 C standard plus GNU extensions. 365 \item366 \Indexc[deletekeywords=inline]{-fgnu89-inline}\index{compilation option!-fgnu89-inline@{\lstinline[deletekeywords=inline]{-fgnu89-inline}}}367 Use the traditional GNU semantics for inline routines in C11 mode, which allows inline routines in header files.368 365 \end{description} 369 366 -
TabularUnified driver/cfa.cc ¶
ra5e2786f r43299af 522 522 args[nargs++] = "-std=gnu11"; // default c11, if none specified 523 523 } // if 524 args[nargs++] = "-fgnu89-inline";525 524 args[nargs++] = "-D__int8_t_defined"; // prevent gcc type-size attributes 526 525 args[nargs++] = ( *new string( string("-B") + bprefix ) ).c_str();
Note: See TracChangeset
for help on using the changeset viewer.