auto-host.h 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. /* auto-host.h. Generated from config.in by configure. */
  2. /* config.in. Generated from configure.ac by autoheader. */
  3. /* Define if this compiler should be built as the offload target compiler. */
  4. #ifndef USED_FOR_TARGET
  5. /* #undef ACCEL_COMPILER */
  6. #endif
  7. /* Define if building universal (internal helper macro) */
  8. #ifndef USED_FOR_TARGET
  9. /* #undef AC_APPLE_UNIVERSAL_BUILD */
  10. #endif
  11. /* Define to the assembler option to enable compressed debug sections. */
  12. #ifndef USED_FOR_TARGET
  13. #define AS_COMPRESS_DEBUG_OPTION "--compress-debug-sections"
  14. #endif
  15. /* Define to the assembler option to disable compressed debug sections. */
  16. #ifndef USED_FOR_TARGET
  17. #define AS_NO_COMPRESS_DEBUG_OPTION "--nocompress-debug-sections"
  18. #endif
  19. /* Define as the number of bits in a byte, if `limits.h' doesn't. */
  20. #ifndef USED_FOR_TARGET
  21. /* #undef CHAR_BIT */
  22. #endif
  23. /* Define 0/1 to force the choice for exception handling model. */
  24. #ifndef USED_FOR_TARGET
  25. /* #undef CONFIG_SJLJ_EXCEPTIONS */
  26. #endif
  27. /* Define to enable the use of a default assembler. */
  28. #ifndef USED_FOR_TARGET
  29. /* #undef DEFAULT_ASSEMBLER */
  30. #endif
  31. /* Define to enable the use of a default linker. */
  32. #ifndef USED_FOR_TARGET
  33. /* #undef DEFAULT_LINKER */
  34. #endif
  35. /* Define if you want to use __cxa_atexit, rather than atexit, to register C++
  36. destructors for local statics and global objects. This is essential for
  37. fully standards-compliant handling of destructors, but requires
  38. __cxa_atexit in libc. */
  39. #ifndef USED_FOR_TARGET
  40. #define DEFAULT_USE_CXA_ATEXIT 2
  41. #endif
  42. /* The default for -fdiagnostics-color option */
  43. #ifndef USED_FOR_TARGET
  44. #define DIAGNOSTICS_COLOR_DEFAULT -1
  45. #endif
  46. /* Define if you want assertions enabled. This is a cheap check. */
  47. #ifndef USED_FOR_TARGET
  48. #define ENABLE_ASSERT_CHECKING 1
  49. #endif
  50. /* Define if you want more run-time sanity checks. This one gets a grab bag of
  51. miscellaneous but relatively cheap checks. */
  52. #ifndef USED_FOR_TARGET
  53. /* #undef ENABLE_CHECKING */
  54. #endif
  55. /* Define to 1 to specify that we are using the BID decimal floating point
  56. format instead of DPD */
  57. #ifndef USED_FOR_TARGET
  58. #define ENABLE_DECIMAL_BID_FORMAT 0
  59. #endif
  60. /* Define to 1 to enable decimal float extension to C. */
  61. #ifndef USED_FOR_TARGET
  62. #define ENABLE_DECIMAL_FLOAT 0
  63. #endif
  64. /* Define if you want more run-time sanity checks for dataflow. */
  65. #ifndef USED_FOR_TARGET
  66. /* #undef ENABLE_DF_CHECKING */
  67. #endif
  68. /* Define to 1 to enable fixed-point arithmetic extension to C. */
  69. #ifndef USED_FOR_TARGET
  70. #define ENABLE_FIXED_POINT 1
  71. #endif
  72. /* Define if you want fold checked that it never destructs its argument. This
  73. is quite expensive. */
  74. #ifndef USED_FOR_TARGET
  75. /* #undef ENABLE_FOLD_CHECKING */
  76. #endif
  77. /* Define if you want the garbage collector to operate in maximally paranoid
  78. mode, validating the entire heap and collecting garbage at every
  79. opportunity. This is extremely expensive. */
  80. #ifndef USED_FOR_TARGET
  81. /* #undef ENABLE_GC_ALWAYS_COLLECT */
  82. #endif
  83. /* Define if you want the garbage collector to do object poisoning and other
  84. memory allocation checks. This is quite expensive. */
  85. #ifndef USED_FOR_TARGET
  86. /* #undef ENABLE_GC_CHECKING */
  87. #endif
  88. /* Define if you want operations on GIMPLE (the basic data structure of the
  89. high-level optimizers) to be checked for dynamic type safety at runtime.
  90. This is moderately expensive. */
  91. #ifndef USED_FOR_TARGET
  92. /* #undef ENABLE_GIMPLE_CHECKING */
  93. #endif
  94. /* Define if gcc should always pass --build-id to linker. */
  95. #ifndef USED_FOR_TARGET
  96. /* #undef ENABLE_LD_BUILDID */
  97. #endif
  98. /* Define to 1 to enable libquadmath support */
  99. #ifndef USED_FOR_TARGET
  100. #define ENABLE_LIBQUADMATH_SUPPORT 1
  101. #endif
  102. /* Define to enable LTO support. */
  103. #ifndef USED_FOR_TARGET
  104. #define ENABLE_LTO 1
  105. #endif
  106. /* Define to 1 if translation of program messages to the user's native
  107. language is requested. */
  108. #ifndef USED_FOR_TARGET
  109. /* #undef ENABLE_NLS */
  110. #endif
  111. /* Define this to enable support for offloading. */
  112. #ifndef USED_FOR_TARGET
  113. /* #undef ENABLE_OFFLOADING */
  114. #endif
  115. /* Define to enable plugin support. */
  116. #ifndef USED_FOR_TARGET
  117. #define ENABLE_PLUGIN 1
  118. #endif
  119. /* Define if you want all operations on RTL (the basic data structure of the
  120. optimizer and back end) to be checked for dynamic type safety at runtime.
  121. This is quite expensive. */
  122. #ifndef USED_FOR_TARGET
  123. /* #undef ENABLE_RTL_CHECKING */
  124. #endif
  125. /* Define if you want RTL flag accesses to be checked against the RTL codes
  126. that are supported for each access macro. This is relatively cheap. */
  127. #ifndef USED_FOR_TARGET
  128. /* #undef ENABLE_RTL_FLAG_CHECKING */
  129. #endif
  130. /* Define if you want runtime assertions enabled. This is a cheap check. */
  131. #define ENABLE_RUNTIME_CHECKING 1
  132. /* Define if you want all operations on trees (the basic data structure of the
  133. front ends) to be checked for dynamic type safety at runtime. This is
  134. moderately expensive. The tree browser debugging routines will also be
  135. enabled by this option. */
  136. #ifndef USED_FOR_TARGET
  137. /* #undef ENABLE_TREE_CHECKING */
  138. #endif
  139. /* Define if you want all gimple types to be verified after gimplifiation.
  140. This is cheap. */
  141. #ifndef USED_FOR_TARGET
  142. /* #undef ENABLE_TYPES_CHECKING */
  143. #endif
  144. /* Define to get calls to the valgrind runtime enabled. */
  145. #ifndef USED_FOR_TARGET
  146. /* #undef ENABLE_VALGRIND_ANNOTATIONS */
  147. #endif
  148. /* Define if you want to run subprograms and generated programs through
  149. valgrind (a memory checker). This is extremely expensive. */
  150. #ifndef USED_FOR_TARGET
  151. /* #undef ENABLE_VALGRIND_CHECKING */
  152. #endif
  153. /* Define to 1 if installation paths should be looked up in the Windows
  154. Registry. Ignored on non-Windows hosts. */
  155. #ifndef USED_FOR_TARGET
  156. /* #undef ENABLE_WIN32_REGISTRY */
  157. #endif
  158. /* Define to the name of a file containing a list of extra machine modes for
  159. this architecture. */
  160. #ifndef USED_FOR_TARGET
  161. #define EXTRA_MODES_FILE "config/mips/mips-modes.def"
  162. #endif
  163. /* Define to enable detailed memory allocation stats gathering. */
  164. #ifndef USED_FOR_TARGET
  165. #define GATHER_STATISTICS 0
  166. #endif
  167. /* Define to 1 if `TIOCGWINSZ' requires <sys/ioctl.h>. */
  168. #ifndef USED_FOR_TARGET
  169. #define GWINSZ_IN_SYS_IOCTL 1
  170. #endif
  171. /* mcontext_t fields start with __ */
  172. #ifndef USED_FOR_TARGET
  173. /* #undef HAS_MCONTEXT_T_UNDERSCORES */
  174. #endif
  175. /* Define if your avr assembler supports --mlink-relax option. */
  176. #ifndef USED_FOR_TARGET
  177. /* #undef HAVE_AS_AVR_MLINK_RELAX_OPTION */
  178. #endif
  179. /* Define if your avr assembler supports -mrmw option. */
  180. #ifndef USED_FOR_TARGET
  181. /* #undef HAVE_AS_AVR_MRMW_OPTION */
  182. #endif
  183. /* Define if your assembler supports cmpb. */
  184. #ifndef USED_FOR_TARGET
  185. /* #undef HAVE_AS_CMPB */
  186. #endif
  187. /* Define to the level of your assembler's compressed debug section support.
  188. */
  189. #ifndef USED_FOR_TARGET
  190. #define HAVE_AS_COMPRESS_DEBUG 1
  191. #endif
  192. /* Define if your assembler supports the DCI/ICI instructions. */
  193. #ifndef USED_FOR_TARGET
  194. /* #undef HAVE_AS_DCI */
  195. #endif
  196. /* Define if your assembler supports the --debug-prefix-map option. */
  197. #ifndef USED_FOR_TARGET
  198. #define HAVE_AS_DEBUG_PREFIX_MAP 1
  199. #endif
  200. /* Define if your assembler supports DFP instructions. */
  201. #ifndef USED_FOR_TARGET
  202. /* #undef HAVE_AS_DFP */
  203. #endif
  204. /* Define if your assembler supports .module. */
  205. #ifndef USED_FOR_TARGET
  206. #define HAVE_AS_DOT_MODULE 1
  207. #endif
  208. /* Define if your assembler supports DSPR1 mult. */
  209. #ifndef USED_FOR_TARGET
  210. #define HAVE_AS_DSPR1_MULT 1
  211. #endif
  212. /* Define if your assembler supports .dtprelword. */
  213. #ifndef USED_FOR_TARGET
  214. #define HAVE_AS_DTPRELWORD 1
  215. #endif
  216. /* Define if your assembler supports dwarf2 .file/.loc directives, and
  217. preserves file table indices exactly as given. */
  218. #ifndef USED_FOR_TARGET
  219. #define HAVE_AS_DWARF2_DEBUG_LINE 1
  220. #endif
  221. /* Define if your assembler supports explicit relocations. */
  222. #ifndef USED_FOR_TARGET
  223. /* #undef HAVE_AS_EXPLICIT_RELOCS */
  224. #endif
  225. /* Define if your assembler supports FMAF, HPC, and VIS 3.0 instructions. */
  226. #ifndef USED_FOR_TARGET
  227. /* #undef HAVE_AS_FMAF_HPC_VIS3 */
  228. #endif
  229. /* Define if your assembler supports fprnd. */
  230. #ifndef USED_FOR_TARGET
  231. /* #undef HAVE_AS_FPRND */
  232. #endif
  233. /* Define if your assembler supports the --gdwarf2 option. */
  234. #ifndef USED_FOR_TARGET
  235. #define HAVE_AS_GDWARF2_DEBUG_FLAG 1
  236. #endif
  237. /* Define if your assembler supports .gnu_attribute. */
  238. #ifndef USED_FOR_TARGET
  239. #define HAVE_AS_GNU_ATTRIBUTE 1
  240. #endif
  241. /* Define true if the assembler supports '.long foo@GOTOFF'. */
  242. #ifndef USED_FOR_TARGET
  243. /* #undef HAVE_AS_GOTOFF_IN_DATA */
  244. #endif
  245. /* Define if your assembler supports the --gstabs option. */
  246. #ifndef USED_FOR_TARGET
  247. #define HAVE_AS_GSTABS_DEBUG_FLAG 1
  248. #endif
  249. /* Define if your assembler supports the Sun syntax for cmov. */
  250. #ifndef USED_FOR_TARGET
  251. /* #undef HAVE_AS_IX86_CMOV_SUN_SYNTAX */
  252. #endif
  253. /* Define if your assembler supports the subtraction of symbols in different
  254. sections. */
  255. #ifndef USED_FOR_TARGET
  256. /* #undef HAVE_AS_IX86_DIFF_SECT_DELTA */
  257. #endif
  258. /* Define if your assembler supports the ffreep mnemonic. */
  259. #ifndef USED_FOR_TARGET
  260. /* #undef HAVE_AS_IX86_FFREEP */
  261. #endif
  262. /* Define if your assembler uses fildq and fistq mnemonics. */
  263. #ifndef USED_FOR_TARGET
  264. /* #undef HAVE_AS_IX86_FILDQ */
  265. #endif
  266. /* Define if your assembler uses filds and fists mnemonics. */
  267. #ifndef USED_FOR_TARGET
  268. /* #undef HAVE_AS_IX86_FILDS */
  269. #endif
  270. /* Define if your assembler supports HLE prefixes. */
  271. #ifndef USED_FOR_TARGET
  272. /* #undef HAVE_AS_IX86_HLE */
  273. #endif
  274. /* Define if your assembler supports interunit movq mnemonic. */
  275. #ifndef USED_FOR_TARGET
  276. /* #undef HAVE_AS_IX86_INTERUNIT_MOVQ */
  277. #endif
  278. /* Define if your assembler supports the .quad directive. */
  279. #ifndef USED_FOR_TARGET
  280. /* #undef HAVE_AS_IX86_QUAD */
  281. #endif
  282. /* Define if the assembler supports 'rep <insn>, lock <insn>'. */
  283. #ifndef USED_FOR_TARGET
  284. /* #undef HAVE_AS_IX86_REP_LOCK_PREFIX */
  285. #endif
  286. /* Define if your assembler supports the sahf mnemonic in 64bit mode. */
  287. #ifndef USED_FOR_TARGET
  288. /* #undef HAVE_AS_IX86_SAHF */
  289. #endif
  290. /* Define if your assembler supports the swap suffix. */
  291. #ifndef USED_FOR_TARGET
  292. /* #undef HAVE_AS_IX86_SWAP */
  293. #endif
  294. /* Define if your assembler and linker support @tlsgdplt. */
  295. #ifndef USED_FOR_TARGET
  296. /* #undef HAVE_AS_IX86_TLSGDPLT */
  297. #endif
  298. /* Define to 1 if your assembler and linker support @tlsldm. */
  299. #ifndef USED_FOR_TARGET
  300. /* #undef HAVE_AS_IX86_TLSLDM */
  301. #endif
  302. /* Define to 1 if your assembler and linker support @tlsldmplt. */
  303. #ifndef USED_FOR_TARGET
  304. /* #undef HAVE_AS_IX86_TLSLDMPLT */
  305. #endif
  306. /* Define if your assembler supports the 'ud2' mnemonic. */
  307. #ifndef USED_FOR_TARGET
  308. /* #undef HAVE_AS_IX86_UD2 */
  309. #endif
  310. /* Define if your assembler supports the lituse_jsrdirect relocation. */
  311. #ifndef USED_FOR_TARGET
  312. /* #undef HAVE_AS_JSRDIRECT_RELOCS */
  313. #endif
  314. /* Define if your assembler supports .sleb128 and .uleb128. */
  315. #ifndef USED_FOR_TARGET
  316. #define HAVE_AS_LEB128 1
  317. #endif
  318. /* Define if your assembler supports LEON instructions. */
  319. #ifndef USED_FOR_TARGET
  320. /* #undef HAVE_AS_LEON */
  321. #endif
  322. /* Define if the assembler won't complain about a line such as # 0 "" 2. */
  323. #ifndef USED_FOR_TARGET
  324. #define HAVE_AS_LINE_ZERO 1
  325. #endif
  326. /* Define if your assembler supports ltoffx and ldxmov relocations. */
  327. #ifndef USED_FOR_TARGET
  328. /* #undef HAVE_AS_LTOFFX_LDXMOV_RELOCS */
  329. #endif
  330. /* Define if your assembler supports LWSYNC instructions. */
  331. #ifndef USED_FOR_TARGET
  332. /* #undef HAVE_AS_LWSYNC */
  333. #endif
  334. /* Define if your assembler supports the -mabi option. */
  335. #ifndef USED_FOR_TARGET
  336. /* #undef HAVE_AS_MABI_OPTION */
  337. #endif
  338. /* Define if your assembler supports mfcr field. */
  339. #ifndef USED_FOR_TARGET
  340. /* #undef HAVE_AS_MFCRF */
  341. #endif
  342. /* Define if your assembler supports mffgpr and mftgpr. */
  343. #ifndef USED_FOR_TARGET
  344. /* #undef HAVE_AS_MFPGPR */
  345. #endif
  346. /* Define if the assembler understands -mnan=. */
  347. #ifndef USED_FOR_TARGET
  348. #define HAVE_AS_NAN 1
  349. #endif
  350. /* Define if your assembler supports the -no-mul-bug-abort option. */
  351. #ifndef USED_FOR_TARGET
  352. /* #undef HAVE_AS_NO_MUL_BUG_ABORT_OPTION */
  353. #endif
  354. /* Define if the assembler understands -mno-shared. */
  355. #ifndef USED_FOR_TARGET
  356. #define HAVE_AS_NO_SHARED 1
  357. #endif
  358. /* Define if your assembler supports offsetable %lo(). */
  359. #ifndef USED_FOR_TARGET
  360. /* #undef HAVE_AS_OFFSETABLE_LO10 */
  361. #endif
  362. /* Define if your assembler supports popcntb field. */
  363. #ifndef USED_FOR_TARGET
  364. /* #undef HAVE_AS_POPCNTB */
  365. #endif
  366. /* Define if your assembler supports POPCNTD instructions. */
  367. #ifndef USED_FOR_TARGET
  368. /* #undef HAVE_AS_POPCNTD */
  369. #endif
  370. /* Define if your assembler supports POWER8 instructions. */
  371. #ifndef USED_FOR_TARGET
  372. /* #undef HAVE_AS_POWER8 */
  373. #endif
  374. /* Define if your assembler supports .ref */
  375. #ifndef USED_FOR_TARGET
  376. /* #undef HAVE_AS_REF */
  377. #endif
  378. /* Define if your assembler supports .register. */
  379. #ifndef USED_FOR_TARGET
  380. /* #undef HAVE_AS_REGISTER_PSEUDO_OP */
  381. #endif
  382. /* Define if your assembler supports R_PPC_REL16 relocs. */
  383. #ifndef USED_FOR_TARGET
  384. /* #undef HAVE_AS_REL16 */
  385. #endif
  386. /* Define if your assembler supports -relax option. */
  387. #ifndef USED_FOR_TARGET
  388. /* #undef HAVE_AS_RELAX_OPTION */
  389. #endif
  390. /* Define if your assembler supports SPARC4 instructions. */
  391. #ifndef USED_FOR_TARGET
  392. /* #undef HAVE_AS_SPARC4 */
  393. #endif
  394. /* Define if your assembler and linker support GOTDATA_OP relocs. */
  395. #ifndef USED_FOR_TARGET
  396. /* #undef HAVE_AS_SPARC_GOTDATA_OP */
  397. #endif
  398. /* Define to 1 if your assembler supports #nobits, 0 otherwise. */
  399. #ifndef USED_FOR_TARGET
  400. /* #undef HAVE_AS_SPARC_NOBITS */
  401. #endif
  402. /* Define if your assembler and linker support unaligned PC relative relocs.
  403. */
  404. #ifndef USED_FOR_TARGET
  405. /* #undef HAVE_AS_SPARC_UA_PCREL */
  406. #endif
  407. /* Define if your assembler and linker support unaligned PC relative relocs
  408. against hidden symbols. */
  409. #ifndef USED_FOR_TARGET
  410. /* #undef HAVE_AS_SPARC_UA_PCREL_HIDDEN */
  411. #endif
  412. /* Define if your assembler and linker support thread-local storage. */
  413. #ifndef USED_FOR_TARGET
  414. #define HAVE_AS_TLS 1
  415. #endif
  416. /* Define if your assembler supports arg info for __tls_get_addr. */
  417. #ifndef USED_FOR_TARGET
  418. /* #undef HAVE_AS_TLS_MARKERS */
  419. #endif
  420. /* Define if your assembler supports VSX instructions. */
  421. #ifndef USED_FOR_TARGET
  422. /* #undef HAVE_AS_VSX */
  423. #endif
  424. /* Define to 1 if you have the `atoll' function. */
  425. #ifndef USED_FOR_TARGET
  426. #define HAVE_ATOLL 1
  427. #endif
  428. /* Define to 1 if you have the `atoq' function. */
  429. #ifndef USED_FOR_TARGET
  430. /* #undef HAVE_ATOQ */
  431. #endif
  432. /* Define to 1 if you have the `clearerr_unlocked' function. */
  433. #ifndef USED_FOR_TARGET
  434. #define HAVE_CLEARERR_UNLOCKED 1
  435. #endif
  436. /* Define to 1 if you have the `clock' function. */
  437. #ifndef USED_FOR_TARGET
  438. #define HAVE_CLOCK 1
  439. #endif
  440. /* Define if <time.h> defines clock_t. */
  441. #ifndef USED_FOR_TARGET
  442. #define HAVE_CLOCK_T 1
  443. #endif
  444. /* Define 0/1 if your assembler and linker support COMDAT groups. */
  445. #ifndef USED_FOR_TARGET
  446. #define HAVE_COMDAT_GROUP 1
  447. #endif
  448. /* Define to 1 if we found a declaration for 'abort', otherwise define to 0.
  449. */
  450. #ifndef USED_FOR_TARGET
  451. #define HAVE_DECL_ABORT 1
  452. #endif
  453. /* Define to 1 if we found a declaration for 'asprintf', otherwise define to
  454. 0. */
  455. #ifndef USED_FOR_TARGET
  456. #define HAVE_DECL_ASPRINTF 1
  457. #endif
  458. /* Define to 1 if we found a declaration for 'atof', otherwise define to 0. */
  459. #ifndef USED_FOR_TARGET
  460. #define HAVE_DECL_ATOF 1
  461. #endif
  462. /* Define to 1 if we found a declaration for 'atol', otherwise define to 0. */
  463. #ifndef USED_FOR_TARGET
  464. #define HAVE_DECL_ATOL 1
  465. #endif
  466. /* Define to 1 if we found a declaration for 'basename', otherwise define to
  467. 0. */
  468. #ifndef USED_FOR_TARGET
  469. #define HAVE_DECL_BASENAME 1
  470. #endif
  471. /* Define to 1 if we found a declaration for 'calloc', otherwise define to 0.
  472. */
  473. #ifndef USED_FOR_TARGET
  474. #define HAVE_DECL_CALLOC 1
  475. #endif
  476. /* Define to 1 if we found a declaration for 'clearerr_unlocked', otherwise
  477. define to 0. */
  478. #ifndef USED_FOR_TARGET
  479. #define HAVE_DECL_CLEARERR_UNLOCKED 1
  480. #endif
  481. /* Define to 1 if we found a declaration for 'clock', otherwise define to 0.
  482. */
  483. #ifndef USED_FOR_TARGET
  484. #define HAVE_DECL_CLOCK 1
  485. #endif
  486. /* Define to 1 if we found a declaration for 'errno', otherwise define to 0.
  487. */
  488. #ifndef USED_FOR_TARGET
  489. #define HAVE_DECL_ERRNO 1
  490. #endif
  491. /* Define to 1 if we found a declaration for 'feof_unlocked', otherwise define
  492. to 0. */
  493. #ifndef USED_FOR_TARGET
  494. #define HAVE_DECL_FEOF_UNLOCKED 1
  495. #endif
  496. /* Define to 1 if we found a declaration for 'ferror_unlocked', otherwise
  497. define to 0. */
  498. #ifndef USED_FOR_TARGET
  499. #define HAVE_DECL_FERROR_UNLOCKED 1
  500. #endif
  501. /* Define to 1 if we found a declaration for 'fflush_unlocked', otherwise
  502. define to 0. */
  503. #ifndef USED_FOR_TARGET
  504. #define HAVE_DECL_FFLUSH_UNLOCKED 1
  505. #endif
  506. /* Define to 1 if we found a declaration for 'ffs', otherwise define to 0. */
  507. #ifndef USED_FOR_TARGET
  508. #define HAVE_DECL_FFS 1
  509. #endif
  510. /* Define to 1 if we found a declaration for 'fgetc_unlocked', otherwise
  511. define to 0. */
  512. #ifndef USED_FOR_TARGET
  513. #define HAVE_DECL_FGETC_UNLOCKED 1
  514. #endif
  515. /* Define to 1 if we found a declaration for 'fgets_unlocked', otherwise
  516. define to 0. */
  517. #ifndef USED_FOR_TARGET
  518. #define HAVE_DECL_FGETS_UNLOCKED 1
  519. #endif
  520. /* Define to 1 if we found a declaration for 'fileno_unlocked', otherwise
  521. define to 0. */
  522. #ifndef USED_FOR_TARGET
  523. #define HAVE_DECL_FILENO_UNLOCKED 1
  524. #endif
  525. /* Define to 1 if we found a declaration for 'fprintf_unlocked', otherwise
  526. define to 0. */
  527. #ifndef USED_FOR_TARGET
  528. #define HAVE_DECL_FPRINTF_UNLOCKED 0
  529. #endif
  530. /* Define to 1 if we found a declaration for 'fputc_unlocked', otherwise
  531. define to 0. */
  532. #ifndef USED_FOR_TARGET
  533. #define HAVE_DECL_FPUTC_UNLOCKED 1
  534. #endif
  535. /* Define to 1 if we found a declaration for 'fputs_unlocked', otherwise
  536. define to 0. */
  537. #ifndef USED_FOR_TARGET
  538. #define HAVE_DECL_FPUTS_UNLOCKED 1
  539. #endif
  540. /* Define to 1 if we found a declaration for 'fread_unlocked', otherwise
  541. define to 0. */
  542. #ifndef USED_FOR_TARGET
  543. #define HAVE_DECL_FREAD_UNLOCKED 1
  544. #endif
  545. /* Define to 1 if we found a declaration for 'free', otherwise define to 0. */
  546. #ifndef USED_FOR_TARGET
  547. #define HAVE_DECL_FREE 1
  548. #endif
  549. /* Define to 1 if we found a declaration for 'fwrite_unlocked', otherwise
  550. define to 0. */
  551. #ifndef USED_FOR_TARGET
  552. #define HAVE_DECL_FWRITE_UNLOCKED 1
  553. #endif
  554. /* Define to 1 if we found a declaration for 'getchar_unlocked', otherwise
  555. define to 0. */
  556. #ifndef USED_FOR_TARGET
  557. #define HAVE_DECL_GETCHAR_UNLOCKED 1
  558. #endif
  559. /* Define to 1 if we found a declaration for 'getcwd', otherwise define to 0.
  560. */
  561. #ifndef USED_FOR_TARGET
  562. #define HAVE_DECL_GETCWD 1
  563. #endif
  564. /* Define to 1 if we found a declaration for 'getc_unlocked', otherwise define
  565. to 0. */
  566. #ifndef USED_FOR_TARGET
  567. #define HAVE_DECL_GETC_UNLOCKED 1
  568. #endif
  569. /* Define to 1 if we found a declaration for 'getenv', otherwise define to 0.
  570. */
  571. #ifndef USED_FOR_TARGET
  572. #define HAVE_DECL_GETENV 1
  573. #endif
  574. /* Define to 1 if we found a declaration for 'getopt', otherwise define to 0.
  575. */
  576. #ifndef USED_FOR_TARGET
  577. #define HAVE_DECL_GETOPT 0
  578. #endif
  579. /* Define to 1 if we found a declaration for 'getpagesize', otherwise define
  580. to 0. */
  581. #ifndef USED_FOR_TARGET
  582. #define HAVE_DECL_GETPAGESIZE 1
  583. #endif
  584. /* Define to 1 if we found a declaration for 'getrlimit', otherwise define to
  585. 0. */
  586. #ifndef USED_FOR_TARGET
  587. #define HAVE_DECL_GETRLIMIT 1
  588. #endif
  589. /* Define to 1 if we found a declaration for 'getrusage', otherwise define to
  590. 0. */
  591. #ifndef USED_FOR_TARGET
  592. #define HAVE_DECL_GETRUSAGE 1
  593. #endif
  594. /* Define to 1 if we found a declaration for 'getwd', otherwise define to 0.
  595. */
  596. #ifndef USED_FOR_TARGET
  597. #define HAVE_DECL_GETWD 1
  598. #endif
  599. /* Define to 1 if we found a declaration for 'ldgetname', otherwise define to
  600. 0. */
  601. #ifndef USED_FOR_TARGET
  602. #define HAVE_DECL_LDGETNAME 0
  603. #endif
  604. /* Define to 1 if we found a declaration for 'madvise', otherwise define to 0.
  605. */
  606. #ifndef USED_FOR_TARGET
  607. #define HAVE_DECL_MADVISE 1
  608. #endif
  609. /* Define to 1 if we found a declaration for 'malloc', otherwise define to 0.
  610. */
  611. #ifndef USED_FOR_TARGET
  612. #define HAVE_DECL_MALLOC 1
  613. #endif
  614. /* Define to 1 if we found a declaration for 'putchar_unlocked', otherwise
  615. define to 0. */
  616. #ifndef USED_FOR_TARGET
  617. #define HAVE_DECL_PUTCHAR_UNLOCKED 1
  618. #endif
  619. /* Define to 1 if we found a declaration for 'putc_unlocked', otherwise define
  620. to 0. */
  621. #ifndef USED_FOR_TARGET
  622. #define HAVE_DECL_PUTC_UNLOCKED 1
  623. #endif
  624. /* Define to 1 if we found a declaration for 'realloc', otherwise define to 0.
  625. */
  626. #ifndef USED_FOR_TARGET
  627. #define HAVE_DECL_REALLOC 1
  628. #endif
  629. /* Define to 1 if we found a declaration for 'sbrk', otherwise define to 0. */
  630. #ifndef USED_FOR_TARGET
  631. #define HAVE_DECL_SBRK 1
  632. #endif
  633. /* Define to 1 if we found a declaration for 'setrlimit', otherwise define to
  634. 0. */
  635. #ifndef USED_FOR_TARGET
  636. #define HAVE_DECL_SETRLIMIT 1
  637. #endif
  638. /* Define to 1 if we found a declaration for 'sigaltstack', otherwise define
  639. to 0. */
  640. #ifndef USED_FOR_TARGET
  641. #define HAVE_DECL_SIGALTSTACK 1
  642. #endif
  643. /* Define to 1 if we found a declaration for 'snprintf', otherwise define to
  644. 0. */
  645. #ifndef USED_FOR_TARGET
  646. #define HAVE_DECL_SNPRINTF 1
  647. #endif
  648. /* Define to 1 if we found a declaration for 'stpcpy', otherwise define to 0.
  649. */
  650. #ifndef USED_FOR_TARGET
  651. #define HAVE_DECL_STPCPY 1
  652. #endif
  653. /* Define to 1 if we found a declaration for 'strnlen', otherwise define to 0.
  654. */
  655. #ifndef USED_FOR_TARGET
  656. #define HAVE_DECL_STRNLEN 1
  657. #endif
  658. /* Define to 1 if we found a declaration for 'strsignal', otherwise define to
  659. 0. */
  660. #ifndef USED_FOR_TARGET
  661. #define HAVE_DECL_STRSIGNAL 1
  662. #endif
  663. /* Define to 1 if we found a declaration for 'strstr', otherwise define to 0.
  664. */
  665. #ifndef USED_FOR_TARGET
  666. #define HAVE_DECL_STRSTR 1
  667. #endif
  668. /* Define to 1 if we found a declaration for 'strtol', otherwise define to 0.
  669. */
  670. #ifndef USED_FOR_TARGET
  671. #define HAVE_DECL_STRTOL 1
  672. #endif
  673. /* Define to 1 if we found a declaration for 'strtoll', otherwise define to 0.
  674. */
  675. #ifndef USED_FOR_TARGET
  676. #define HAVE_DECL_STRTOLL 1
  677. #endif
  678. /* Define to 1 if we found a declaration for 'strtoul', otherwise define to 0.
  679. */
  680. #ifndef USED_FOR_TARGET
  681. #define HAVE_DECL_STRTOUL 1
  682. #endif
  683. /* Define to 1 if we found a declaration for 'strtoull', otherwise define to
  684. 0. */
  685. #ifndef USED_FOR_TARGET
  686. #define HAVE_DECL_STRTOULL 1
  687. #endif
  688. /* Define to 1 if we found a declaration for 'strverscmp', otherwise define to
  689. 0. */
  690. #ifndef USED_FOR_TARGET
  691. #define HAVE_DECL_STRVERSCMP 1
  692. #endif
  693. /* Define to 1 if we found a declaration for 'times', otherwise define to 0.
  694. */
  695. #ifndef USED_FOR_TARGET
  696. #define HAVE_DECL_TIMES 1
  697. #endif
  698. /* Define to 1 if we found a declaration for 'vasprintf', otherwise define to
  699. 0. */
  700. #ifndef USED_FOR_TARGET
  701. #define HAVE_DECL_VASPRINTF 1
  702. #endif
  703. /* Define to 1 if we found a declaration for 'vsnprintf', otherwise define to
  704. 0. */
  705. #ifndef USED_FOR_TARGET
  706. #define HAVE_DECL_VSNPRINTF 1
  707. #endif
  708. /* Define to 1 if you have the <direct.h> header file. */
  709. #ifndef USED_FOR_TARGET
  710. /* #undef HAVE_DIRECT_H */
  711. #endif
  712. /* Define to 1 if you have the <dlfcn.h> header file. */
  713. #ifndef USED_FOR_TARGET
  714. #define HAVE_DLFCN_H 1
  715. #endif
  716. /* Define to 1 if you have the <ext/hash_map> header file. */
  717. #ifndef USED_FOR_TARGET
  718. #define HAVE_EXT_HASH_MAP 1
  719. #endif
  720. /* Define to 1 if you have the <fcntl.h> header file. */
  721. #ifndef USED_FOR_TARGET
  722. #define HAVE_FCNTL_H 1
  723. #endif
  724. /* Define to 1 if you have the `feof_unlocked' function. */
  725. #ifndef USED_FOR_TARGET
  726. #define HAVE_FEOF_UNLOCKED 1
  727. #endif
  728. /* Define to 1 if you have the `ferror_unlocked' function. */
  729. #ifndef USED_FOR_TARGET
  730. #define HAVE_FERROR_UNLOCKED 1
  731. #endif
  732. /* Define to 1 if you have the `fflush_unlocked' function. */
  733. #ifndef USED_FOR_TARGET
  734. #define HAVE_FFLUSH_UNLOCKED 1
  735. #endif
  736. /* Define to 1 if you have the `fgetc_unlocked' function. */
  737. #ifndef USED_FOR_TARGET
  738. #define HAVE_FGETC_UNLOCKED 1
  739. #endif
  740. /* Define to 1 if you have the `fgets_unlocked' function. */
  741. #ifndef USED_FOR_TARGET
  742. #define HAVE_FGETS_UNLOCKED 1
  743. #endif
  744. /* Define to 1 if you have the `fileno_unlocked' function. */
  745. #ifndef USED_FOR_TARGET
  746. #define HAVE_FILENO_UNLOCKED 1
  747. #endif
  748. /* Define to 1 if you have the `fork' function. */
  749. #ifndef USED_FOR_TARGET
  750. #define HAVE_FORK 1
  751. #endif
  752. /* Define to 1 if you have the `fprintf_unlocked' function. */
  753. #ifndef USED_FOR_TARGET
  754. /* #undef HAVE_FPRINTF_UNLOCKED */
  755. #endif
  756. /* Define to 1 if you have the `fputc_unlocked' function. */
  757. #ifndef USED_FOR_TARGET
  758. #define HAVE_FPUTC_UNLOCKED 1
  759. #endif
  760. /* Define to 1 if you have the `fputs_unlocked' function. */
  761. #ifndef USED_FOR_TARGET
  762. #define HAVE_FPUTS_UNLOCKED 1
  763. #endif
  764. /* Define to 1 if you have the `fread_unlocked' function. */
  765. #ifndef USED_FOR_TARGET
  766. #define HAVE_FREAD_UNLOCKED 1
  767. #endif
  768. /* Define to 1 if you have the <ftw.h> header file. */
  769. #ifndef USED_FOR_TARGET
  770. #define HAVE_FTW_H 1
  771. #endif
  772. /* Define to 1 if you have the `fwrite_unlocked' function. */
  773. #ifndef USED_FOR_TARGET
  774. #define HAVE_FWRITE_UNLOCKED 1
  775. #endif
  776. /* Define if your assembler supports specifying the alignment of objects
  777. allocated using the GAS .comm command. */
  778. #ifndef USED_FOR_TARGET
  779. /* #undef HAVE_GAS_ALIGNED_COMM */
  780. #endif
  781. /* Define if your assembler supports .balign and .p2align. */
  782. #ifndef USED_FOR_TARGET
  783. #define HAVE_GAS_BALIGN_AND_P2ALIGN 1
  784. #endif
  785. /* Define 0/1 if your assembler supports CFI directives. */
  786. #define HAVE_GAS_CFI_DIRECTIVE 1
  787. /* Define 0/1 if your assembler supports .cfi_personality. */
  788. #define HAVE_GAS_CFI_PERSONALITY_DIRECTIVE 1
  789. /* Define 0/1 if your assembler supports .cfi_sections. */
  790. #define HAVE_GAS_CFI_SECTIONS_DIRECTIVE 1
  791. /* Define if your assembler supports the .loc discriminator sub-directive. */
  792. #ifndef USED_FOR_TARGET
  793. #define HAVE_GAS_DISCRIMINATOR 1
  794. #endif
  795. /* Define if your assembler supports @gnu_unique_object. */
  796. #ifndef USED_FOR_TARGET
  797. /* #undef HAVE_GAS_GNU_UNIQUE_OBJECT */
  798. #endif
  799. /* Define if your assembler and linker support .hidden. */
  800. #define HAVE_GAS_HIDDEN 1
  801. /* Define if your assembler supports .lcomm with an alignment field. */
  802. #ifndef USED_FOR_TARGET
  803. /* #undef HAVE_GAS_LCOMM_WITH_ALIGNMENT */
  804. #endif
  805. /* Define if your assembler supports .literal16. */
  806. #ifndef USED_FOR_TARGET
  807. /* #undef HAVE_GAS_LITERAL16 */
  808. #endif
  809. /* Define if your assembler supports specifying the maximum number of bytes to
  810. skip when using the GAS .p2align command. */
  811. #ifndef USED_FOR_TARGET
  812. #define HAVE_GAS_MAX_SKIP_P2ALIGN 1
  813. #endif
  814. /* Define if your assembler supports the .set micromips directive */
  815. #ifndef USED_FOR_TARGET
  816. #define HAVE_GAS_MICROMIPS 1
  817. #endif
  818. /* Define if your assembler supports .nsubspa comdat option. */
  819. #ifndef USED_FOR_TARGET
  820. /* #undef HAVE_GAS_NSUBSPA_COMDAT */
  821. #endif
  822. /* Define if your assembler and linker support 32-bit section relative relocs
  823. via '.secrel32 label'. */
  824. #ifndef USED_FOR_TARGET
  825. /* #undef HAVE_GAS_PE_SECREL32_RELOC */
  826. #endif
  827. /* Define if your assembler supports specifying the section flag e. */
  828. #ifndef USED_FOR_TARGET
  829. /* #undef HAVE_GAS_SECTION_EXCLUDE */
  830. #endif
  831. /* Define 0/1 if your assembler supports marking sections with SHF_MERGE flag.
  832. */
  833. #ifndef USED_FOR_TARGET
  834. #define HAVE_GAS_SHF_MERGE 1
  835. #endif
  836. /* Define if your assembler supports .subsection and .subsection -1 starts
  837. emitting at the beginning of your section. */
  838. #ifndef USED_FOR_TARGET
  839. #define HAVE_GAS_SUBSECTION_ORDERING 1
  840. #endif
  841. /* Define if your assembler supports .weak. */
  842. #ifndef USED_FOR_TARGET
  843. #define HAVE_GAS_WEAK 1
  844. #endif
  845. /* Define if your assembler supports .weakref. */
  846. #ifndef USED_FOR_TARGET
  847. #define HAVE_GAS_WEAKREF 1
  848. #endif
  849. /* Define to 1 if you have the `getchar_unlocked' function. */
  850. #ifndef USED_FOR_TARGET
  851. #define HAVE_GETCHAR_UNLOCKED 1
  852. #endif
  853. /* Define to 1 if you have the `getc_unlocked' function. */
  854. #ifndef USED_FOR_TARGET
  855. #define HAVE_GETC_UNLOCKED 1
  856. #endif
  857. /* Define to 1 if you have the `getrlimit' function. */
  858. #ifndef USED_FOR_TARGET
  859. #define HAVE_GETRLIMIT 1
  860. #endif
  861. /* Define to 1 if you have the `getrusage' function. */
  862. #ifndef USED_FOR_TARGET
  863. #define HAVE_GETRUSAGE 1
  864. #endif
  865. /* Define to 1 if you have the `gettimeofday' function. */
  866. #ifndef USED_FOR_TARGET
  867. #define HAVE_GETTIMEOFDAY 1
  868. #endif
  869. /* Define to 1 if using GNU as. */
  870. #ifndef USED_FOR_TARGET
  871. #define HAVE_GNU_AS 1
  872. #endif
  873. /* Define if your system supports gnu indirect functions. */
  874. #ifndef USED_FOR_TARGET
  875. #define HAVE_GNU_INDIRECT_FUNCTION 0
  876. #endif
  877. /* Define to 1 if using GNU ld. */
  878. #ifndef USED_FOR_TARGET
  879. #define HAVE_GNU_LD 1
  880. #endif
  881. /* Define if you have the iconv() function. */
  882. #ifndef USED_FOR_TARGET
  883. #define HAVE_ICONV 1
  884. #endif
  885. /* Define to 1 if you have the <iconv.h> header file. */
  886. #ifndef USED_FOR_TARGET
  887. #define HAVE_ICONV_H 1
  888. #endif
  889. /* Define .init_array/.fini_array sections are available and working. */
  890. #ifndef USED_FOR_TARGET
  891. /* #undef HAVE_INITFINI_ARRAY_SUPPORT */
  892. #endif
  893. /* Define to 1 if the system has the type `intmax_t'. */
  894. #ifndef USED_FOR_TARGET
  895. #define HAVE_INTMAX_T 1
  896. #endif
  897. /* Define to 1 if the system has the type `intptr_t'. */
  898. #ifndef USED_FOR_TARGET
  899. #define HAVE_INTPTR_T 1
  900. #endif
  901. /* Define if you have a working <inttypes.h> header file. */
  902. #ifndef USED_FOR_TARGET
  903. #define HAVE_INTTYPES_H 1
  904. #endif
  905. /* Define if isl_options_set_schedule_serialize_sccs exists. */
  906. #ifndef USED_FOR_TARGET
  907. /* #undef HAVE_ISL_OPTIONS_SET_SCHEDULE_SERIALIZE_SCCS */
  908. #endif
  909. /* Define if isl_schedule_constraints_compute_schedule exists. */
  910. #ifndef USED_FOR_TARGET
  911. /* #undef HAVE_ISL_SCHED_CONSTRAINTS_COMPUTE_SCHEDULE */
  912. #endif
  913. /* Define to 1 if you have the `kill' function. */
  914. #ifndef USED_FOR_TARGET
  915. #define HAVE_KILL 1
  916. #endif
  917. /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
  918. #ifndef USED_FOR_TARGET
  919. #define HAVE_LANGINFO_CODESET 1
  920. #endif
  921. /* Define to 1 if you have the <langinfo.h> header file. */
  922. #ifndef USED_FOR_TARGET
  923. #define HAVE_LANGINFO_H 1
  924. #endif
  925. /* Define if your <locale.h> file defines LC_MESSAGES. */
  926. #ifndef USED_FOR_TARGET
  927. #define HAVE_LC_MESSAGES 1
  928. #endif
  929. /* Define to 1 if you have the <ldfcn.h> header file. */
  930. #ifndef USED_FOR_TARGET
  931. /* #undef HAVE_LDFCN_H */
  932. #endif
  933. /* Define if your linker supports --as-needed/--no-as-needed or equivalent
  934. options. */
  935. #ifndef USED_FOR_TARGET
  936. #define HAVE_LD_AS_NEEDED 1
  937. #endif
  938. /* Define if your linker supports --build-id. */
  939. #ifndef USED_FOR_TARGET
  940. #define HAVE_LD_BUILDID 1
  941. #endif
  942. /* Define if the linker supports clearing hardware capabilities via mapfile.
  943. */
  944. #ifndef USED_FOR_TARGET
  945. /* #undef HAVE_LD_CLEARCAP */
  946. #endif
  947. /* Define to the level of your linker's compressed debug section support. */
  948. #ifndef USED_FOR_TARGET
  949. #define HAVE_LD_COMPRESS_DEBUG 1
  950. #endif
  951. /* Define if your linker supports --demangle option. */
  952. #ifndef USED_FOR_TARGET
  953. #define HAVE_LD_DEMANGLE 1
  954. #endif
  955. /* Define 0/1 if your linker supports CIE v3 in .eh_frame. */
  956. #ifndef USED_FOR_TARGET
  957. #define HAVE_LD_EH_FRAME_CIEV3 1
  958. #endif
  959. /* Define if your linker supports .eh_frame_hdr. */
  960. #define HAVE_LD_EH_FRAME_HDR 1
  961. /* Define if your linker supports garbage collection of sections in presence
  962. of EH frames. */
  963. #ifndef USED_FOR_TARGET
  964. #define HAVE_LD_EH_GC_SECTIONS 1
  965. #endif
  966. /* Define if your linker has buggy garbage collection of sections support when
  967. .text.startup.foo like sections are used. */
  968. #ifndef USED_FOR_TARGET
  969. /* #undef HAVE_LD_EH_GC_SECTIONS_BUG */
  970. #endif
  971. /* Define if your PowerPC64 linker supports a large TOC. */
  972. #ifndef USED_FOR_TARGET
  973. /* #undef HAVE_LD_LARGE_TOC */
  974. #endif
  975. /* Define if your PowerPC64 linker only needs function descriptor syms. */
  976. #ifndef USED_FOR_TARGET
  977. /* #undef HAVE_LD_NO_DOT_SYMS */
  978. #endif
  979. /* Define if your linker can relax absolute .eh_frame personality pointers
  980. into PC-relative form. */
  981. #ifndef USED_FOR_TARGET
  982. #define HAVE_LD_PERSONALITY_RELAXATION 1
  983. #endif
  984. /* Define if your linker supports PIE option. */
  985. #ifndef USED_FOR_TARGET
  986. #define HAVE_LD_PIE 1
  987. #endif
  988. /* Define 0/1 if your linker supports -pie option with copy reloc. */
  989. #ifndef USED_FOR_TARGET
  990. #define HAVE_LD_PIE_COPYRELOC 0
  991. #endif
  992. /* Define if your linker links a mix of read-only and read-write sections into
  993. a read-write section. */
  994. #ifndef USED_FOR_TARGET
  995. #define HAVE_LD_RO_RW_SECTION_MIXING 1
  996. #endif
  997. /* Define if your linker supports the *_sol2 emulations. */
  998. #ifndef USED_FOR_TARGET
  999. /* #undef HAVE_LD_SOL2_EMULATION */
  1000. #endif
  1001. /* Define if your linker supports -Bstatic/-Bdynamic or equivalent options. */
  1002. #ifndef USED_FOR_TARGET
  1003. #define HAVE_LD_STATIC_DYNAMIC 1
  1004. #endif
  1005. /* Define if your linker supports --sysroot. */
  1006. #ifndef USED_FOR_TARGET
  1007. #define HAVE_LD_SYSROOT 1
  1008. #endif
  1009. /* Define to 1 if you have the <limits.h> header file. */
  1010. #ifndef USED_FOR_TARGET
  1011. #define HAVE_LIMITS_H 1
  1012. #endif
  1013. /* Define to 1 if you have the <locale.h> header file. */
  1014. #ifndef USED_FOR_TARGET
  1015. #define HAVE_LOCALE_H 1
  1016. #endif
  1017. /* Define to 1 if the system has the type `long long'. */
  1018. #ifndef USED_FOR_TARGET
  1019. #define HAVE_LONG_LONG 1
  1020. #endif
  1021. /* Define to 1 if the system has the type `long long int'. */
  1022. #ifndef USED_FOR_TARGET
  1023. #define HAVE_LONG_LONG_INT 1
  1024. #endif
  1025. /* Define to the level of your linker's plugin support. */
  1026. #ifndef USED_FOR_TARGET
  1027. #define HAVE_LTO_PLUGIN 2
  1028. #endif
  1029. /* Define to 1 if you have the `madvise' function. */
  1030. #ifndef USED_FOR_TARGET
  1031. #define HAVE_MADVISE 1
  1032. #endif
  1033. /* Define to 1 if you have the <malloc.h> header file. */
  1034. #ifndef USED_FOR_TARGET
  1035. #define HAVE_MALLOC_H 1
  1036. #endif
  1037. /* Define to 1 if you have the `mbstowcs' function. */
  1038. #ifndef USED_FOR_TARGET
  1039. #define HAVE_MBSTOWCS 1
  1040. #endif
  1041. /* Define if valgrind's memcheck.h header is installed. */
  1042. #ifndef USED_FOR_TARGET
  1043. /* #undef HAVE_MEMCHECK_H */
  1044. #endif
  1045. /* Define to 1 if you have the <memory.h> header file. */
  1046. #ifndef USED_FOR_TARGET
  1047. #define HAVE_MEMORY_H 1
  1048. #endif
  1049. /* Define to 1 if you have the `mmap' function. */
  1050. #ifndef USED_FOR_TARGET
  1051. #define HAVE_MMAP 1
  1052. #endif
  1053. /* Define if mmap with MAP_ANON(YMOUS) works. */
  1054. #ifndef USED_FOR_TARGET
  1055. #define HAVE_MMAP_ANON 1
  1056. #endif
  1057. /* Define if mmap of /dev/zero works. */
  1058. #ifndef USED_FOR_TARGET
  1059. #define HAVE_MMAP_DEV_ZERO 1
  1060. #endif
  1061. /* Define if read-only mmap of a plain file works. */
  1062. #ifndef USED_FOR_TARGET
  1063. #define HAVE_MMAP_FILE 1
  1064. #endif
  1065. /* Define to 1 if you have the `nl_langinfo' function. */
  1066. #ifndef USED_FOR_TARGET
  1067. #define HAVE_NL_LANGINFO 1
  1068. #endif
  1069. /* Define to 1 if you have the `popen' function. */
  1070. #ifndef USED_FOR_TARGET
  1071. #define HAVE_POPEN 1
  1072. #endif
  1073. /* Define to 1 if you have the `putchar_unlocked' function. */
  1074. #ifndef USED_FOR_TARGET
  1075. #define HAVE_PUTCHAR_UNLOCKED 1
  1076. #endif
  1077. /* Define to 1 if you have the `putc_unlocked' function. */
  1078. #ifndef USED_FOR_TARGET
  1079. #define HAVE_PUTC_UNLOCKED 1
  1080. #endif
  1081. /* Define to 1 if you have the `setlocale' function. */
  1082. #ifndef USED_FOR_TARGET
  1083. #define HAVE_SETLOCALE 1
  1084. #endif
  1085. /* Define to 1 if you have the `setrlimit' function. */
  1086. #ifndef USED_FOR_TARGET
  1087. #define HAVE_SETRLIMIT 1
  1088. #endif
  1089. /* Define if the system-provided CRTs are present on Solaris. */
  1090. #ifndef USED_FOR_TARGET
  1091. /* #undef HAVE_SOLARIS_CRTS */
  1092. #endif
  1093. /* Define to 1 if you have the <stddef.h> header file. */
  1094. #ifndef USED_FOR_TARGET
  1095. #define HAVE_STDDEF_H 1
  1096. #endif
  1097. /* Define to 1 if you have the <stdint.h> header file. */
  1098. #ifndef USED_FOR_TARGET
  1099. #define HAVE_STDINT_H 1
  1100. #endif
  1101. /* Define to 1 if you have the <stdlib.h> header file. */
  1102. #ifndef USED_FOR_TARGET
  1103. #define HAVE_STDLIB_H 1
  1104. #endif
  1105. /* Define to 1 if you have the <strings.h> header file. */
  1106. #ifndef USED_FOR_TARGET
  1107. #define HAVE_STRINGS_H 1
  1108. #endif
  1109. /* Define to 1 if you have the <string.h> header file. */
  1110. #ifndef USED_FOR_TARGET
  1111. #define HAVE_STRING_H 1
  1112. #endif
  1113. /* Define to 1 if you have the `strsignal' function. */
  1114. #ifndef USED_FOR_TARGET
  1115. #define HAVE_STRSIGNAL 1
  1116. #endif
  1117. /* Define if <sys/times.h> defines struct tms. */
  1118. #ifndef USED_FOR_TARGET
  1119. #define HAVE_STRUCT_TMS 1
  1120. #endif
  1121. /* Define to 1 if you have the `sysconf' function. */
  1122. #ifndef USED_FOR_TARGET
  1123. #define HAVE_SYSCONF 1
  1124. #endif
  1125. /* Define to 1 if you have the <sys/file.h> header file. */
  1126. #ifndef USED_FOR_TARGET
  1127. #define HAVE_SYS_FILE_H 1
  1128. #endif
  1129. /* Define to 1 if you have the <sys/mman.h> header file. */
  1130. #ifndef USED_FOR_TARGET
  1131. #define HAVE_SYS_MMAN_H 1
  1132. #endif
  1133. /* Define to 1 if you have the <sys/param.h> header file. */
  1134. #ifndef USED_FOR_TARGET
  1135. #define HAVE_SYS_PARAM_H 1
  1136. #endif
  1137. /* Define to 1 if you have the <sys/resource.h> header file. */
  1138. #ifndef USED_FOR_TARGET
  1139. #define HAVE_SYS_RESOURCE_H 1
  1140. #endif
  1141. /* Define if your target C library provides sys/sdt.h */
  1142. /* #undef HAVE_SYS_SDT_H */
  1143. /* Define to 1 if you have the <sys/stat.h> header file. */
  1144. #ifndef USED_FOR_TARGET
  1145. #define HAVE_SYS_STAT_H 1
  1146. #endif
  1147. /* Define to 1 if you have the <sys/times.h> header file. */
  1148. #ifndef USED_FOR_TARGET
  1149. #define HAVE_SYS_TIMES_H 1
  1150. #endif
  1151. /* Define to 1 if you have the <sys/time.h> header file. */
  1152. #ifndef USED_FOR_TARGET
  1153. #define HAVE_SYS_TIME_H 1
  1154. #endif
  1155. /* Define to 1 if you have the <sys/types.h> header file. */
  1156. #ifndef USED_FOR_TARGET
  1157. #define HAVE_SYS_TYPES_H 1
  1158. #endif
  1159. /* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
  1160. #ifndef USED_FOR_TARGET
  1161. #define HAVE_SYS_WAIT_H 1
  1162. #endif
  1163. /* Define to 1 if you have the `times' function. */
  1164. #ifndef USED_FOR_TARGET
  1165. #define HAVE_TIMES 1
  1166. #endif
  1167. /* Define to 1 if you have the <time.h> header file. */
  1168. #ifndef USED_FOR_TARGET
  1169. #define HAVE_TIME_H 1
  1170. #endif
  1171. /* Define to 1 if you have the <tr1/unordered_map> header file. */
  1172. #ifndef USED_FOR_TARGET
  1173. #define HAVE_TR1_UNORDERED_MAP 1
  1174. #endif
  1175. /* Define to 1 if the system has the type `uintmax_t'. */
  1176. #ifndef USED_FOR_TARGET
  1177. #define HAVE_UINTMAX_T 1
  1178. #endif
  1179. /* Define to 1 if the system has the type `uintptr_t'. */
  1180. #ifndef USED_FOR_TARGET
  1181. #define HAVE_UINTPTR_T 1
  1182. #endif
  1183. /* Define to 1 if you have the <unistd.h> header file. */
  1184. #ifndef USED_FOR_TARGET
  1185. #define HAVE_UNISTD_H 1
  1186. #endif
  1187. /* Define to 1 if you have the <unordered_map> header file. */
  1188. #ifndef USED_FOR_TARGET
  1189. /* #undef HAVE_UNORDERED_MAP */
  1190. #endif
  1191. /* Define to 1 if the system has the type `unsigned long long int'. */
  1192. #ifndef USED_FOR_TARGET
  1193. #define HAVE_UNSIGNED_LONG_LONG_INT 1
  1194. #endif
  1195. /* Define if valgrind's valgrind/memcheck.h header is installed. */
  1196. #ifndef USED_FOR_TARGET
  1197. /* #undef HAVE_VALGRIND_MEMCHECK_H */
  1198. #endif
  1199. /* Define to 1 if you have the `vfork' function. */
  1200. #ifndef USED_FOR_TARGET
  1201. #define HAVE_VFORK 1
  1202. #endif
  1203. /* Define to 1 if you have the <vfork.h> header file. */
  1204. #ifndef USED_FOR_TARGET
  1205. /* #undef HAVE_VFORK_H */
  1206. #endif
  1207. /* Define to 1 if you have the <wchar.h> header file. */
  1208. #ifndef USED_FOR_TARGET
  1209. #define HAVE_WCHAR_H 1
  1210. #endif
  1211. /* Define to 1 if you have the `wcswidth' function. */
  1212. #ifndef USED_FOR_TARGET
  1213. #define HAVE_WCSWIDTH 1
  1214. #endif
  1215. /* Define to 1 if `fork' works. */
  1216. #ifndef USED_FOR_TARGET
  1217. #define HAVE_WORKING_FORK 1
  1218. #endif
  1219. /* Define this macro if mbstowcs does not crash when its first argument is
  1220. NULL. */
  1221. #ifndef USED_FOR_TARGET
  1222. #define HAVE_WORKING_MBSTOWCS 1
  1223. #endif
  1224. /* Define to 1 if `vfork' works. */
  1225. #ifndef USED_FOR_TARGET
  1226. #define HAVE_WORKING_VFORK 1
  1227. #endif
  1228. /* Define if isl is in use. */
  1229. #ifndef USED_FOR_TARGET
  1230. /* #undef HAVE_isl */
  1231. #endif
  1232. /* Define if F_SETLKW supported by fcntl. */
  1233. #ifndef USED_FOR_TARGET
  1234. #define HOST_HAS_F_SETLKW 1
  1235. #endif
  1236. /* Define as const if the declaration of iconv() needs const. */
  1237. #ifndef USED_FOR_TARGET
  1238. #define ICONV_CONST
  1239. #endif
  1240. /* Define if int64_t uses long as underlying type. */
  1241. #ifndef USED_FOR_TARGET
  1242. #define INT64_T_IS_LONG 1
  1243. #endif
  1244. /* Define to the linker option to ignore unused dependencies. */
  1245. #ifndef USED_FOR_TARGET
  1246. #define LD_AS_NEEDED_OPTION "--as-needed"
  1247. #endif
  1248. /* Define to the linker option to enable compressed debug sections. */
  1249. #ifndef USED_FOR_TARGET
  1250. #define LD_COMPRESS_DEBUG_OPTION ""
  1251. #endif
  1252. /* Define to the linker option to enable use of shared objects. */
  1253. #ifndef USED_FOR_TARGET
  1254. #define LD_DYNAMIC_OPTION "-Bdynamic"
  1255. #endif
  1256. /* Define to the linker option to keep unused dependencies. */
  1257. #ifndef USED_FOR_TARGET
  1258. #define LD_NO_AS_NEEDED_OPTION "--no-as-needed"
  1259. #endif
  1260. /* Define to the linker option to disable use of shared objects. */
  1261. #ifndef USED_FOR_TARGET
  1262. #define LD_STATIC_OPTION "-Bstatic"
  1263. #endif
  1264. /* The linker hash style */
  1265. #ifndef USED_FOR_TARGET
  1266. /* #undef LINKER_HASH_STYLE */
  1267. #endif
  1268. /* Define to the name of the LTO plugin DSO that must be passed to the
  1269. linker's -plugin=LIB option. */
  1270. #ifndef USED_FOR_TARGET
  1271. #define LTOPLUGINSONAME "liblto_plugin.so"
  1272. #endif
  1273. /* Define to the sub-directory in which libtool stores uninstalled libraries.
  1274. */
  1275. #ifndef USED_FOR_TARGET
  1276. #define LT_OBJDIR ".libs/"
  1277. #endif
  1278. /* Define if host mkdir takes a single argument. */
  1279. #ifndef USED_FOR_TARGET
  1280. /* #undef MKDIR_TAKES_ONE_ARG */
  1281. #endif
  1282. /* Define to hold the list of target names suitable for offloading. */
  1283. #ifndef USED_FOR_TARGET
  1284. #define OFFLOAD_TARGETS ""
  1285. #endif
  1286. /* Define to the address where bug reports for this package should be sent. */
  1287. #ifndef USED_FOR_TARGET
  1288. #define PACKAGE_BUGREPORT ""
  1289. #endif
  1290. /* Define to the full name of this package. */
  1291. #ifndef USED_FOR_TARGET
  1292. #define PACKAGE_NAME ""
  1293. #endif
  1294. /* Define to the full name and version of this package. */
  1295. #ifndef USED_FOR_TARGET
  1296. #define PACKAGE_STRING ""
  1297. #endif
  1298. /* Define to the one symbol short name of this package. */
  1299. #ifndef USED_FOR_TARGET
  1300. #define PACKAGE_TARNAME ""
  1301. #endif
  1302. /* Define to the home page for this package. */
  1303. #ifndef USED_FOR_TARGET
  1304. #define PACKAGE_URL ""
  1305. #endif
  1306. /* Define to the version of this package. */
  1307. #ifndef USED_FOR_TARGET
  1308. #define PACKAGE_VERSION ""
  1309. #endif
  1310. /* Specify plugin linker */
  1311. #ifndef USED_FOR_TARGET
  1312. #define PLUGIN_LD_SUFFIX "ld"
  1313. #endif
  1314. /* Define to PREFIX/include if cpp should also search that directory. */
  1315. #ifndef USED_FOR_TARGET
  1316. /* #undef PREFIX_INCLUDE_DIR */
  1317. #endif
  1318. /* The size of `int', as computed by sizeof. */
  1319. #ifndef USED_FOR_TARGET
  1320. #define SIZEOF_INT 4
  1321. #endif
  1322. /* The size of `long', as computed by sizeof. */
  1323. #ifndef USED_FOR_TARGET
  1324. #define SIZEOF_LONG 8
  1325. #endif
  1326. /* The size of `long long', as computed by sizeof. */
  1327. #ifndef USED_FOR_TARGET
  1328. #define SIZEOF_LONG_LONG 8
  1329. #endif
  1330. /* The size of `short', as computed by sizeof. */
  1331. #ifndef USED_FOR_TARGET
  1332. #define SIZEOF_SHORT 2
  1333. #endif
  1334. /* The size of `void *', as computed by sizeof. */
  1335. #ifndef USED_FOR_TARGET
  1336. #define SIZEOF_VOID_P 8
  1337. #endif
  1338. /* Define to 1 if you have the ANSI C header files. */
  1339. #ifndef USED_FOR_TARGET
  1340. #define STDC_HEADERS 1
  1341. #endif
  1342. /* Define if you can safely include both <string.h> and <strings.h>. */
  1343. #ifndef USED_FOR_TARGET
  1344. #define STRING_WITH_STRINGS 1
  1345. #endif
  1346. /* Define if TFmode long double should be the default */
  1347. #ifndef USED_FOR_TARGET
  1348. /* #undef TARGET_DEFAULT_LONG_DOUBLE_128 */
  1349. #endif
  1350. /* Define if your target C library provides the `dl_iterate_phdr' function. */
  1351. #define TARGET_DL_ITERATE_PHDR 1
  1352. /* GNU C Library major version number used on the target, or 0. */
  1353. #ifndef USED_FOR_TARGET
  1354. #define TARGET_GLIBC_MAJOR 0
  1355. #endif
  1356. /* GNU C Library minor version number used on the target, or 0. */
  1357. #ifndef USED_FOR_TARGET
  1358. #define TARGET_GLIBC_MINOR 0
  1359. #endif
  1360. /* Define if your target C library provides stack protector support */
  1361. #ifndef USED_FOR_TARGET
  1362. #define TARGET_LIBC_PROVIDES_SSP 1
  1363. #endif
  1364. /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
  1365. #ifndef USED_FOR_TARGET
  1366. #define TIME_WITH_SYS_TIME 1
  1367. #endif
  1368. /* Define to the flag used to mark TLS sections if the default (`T') doesn't
  1369. work. */
  1370. #ifndef USED_FOR_TARGET
  1371. /* #undef TLS_SECTION_ASM_FLAG */
  1372. #endif
  1373. /* Define if your assembler mis-optimizes .eh_frame data. */
  1374. #ifndef USED_FOR_TARGET
  1375. /* #undef USE_AS_TRADITIONAL_FORMAT */
  1376. #endif
  1377. /* Define if you want to generate code by default that assumes that the Cygwin
  1378. DLL exports wrappers to support libstdc++ function replacement. */
  1379. #ifndef USED_FOR_TARGET
  1380. /* #undef USE_CYGWIN_LIBSTDCXX_WRAPPERS */
  1381. #endif
  1382. /* Define to 1 if the 'long long' type is wider than 'long' but still
  1383. efficiently supported by the host hardware. */
  1384. #ifndef USED_FOR_TARGET
  1385. /* #undef USE_LONG_LONG_FOR_WIDEST_FAST_INT */
  1386. #endif
  1387. /* Define if we should use leading underscore on 64 bit mingw targets */
  1388. #ifndef USED_FOR_TARGET
  1389. /* #undef USE_MINGW64_LEADING_UNDERSCORES */
  1390. #endif
  1391. /* Enable extensions on AIX 3, Interix. */
  1392. #ifndef _ALL_SOURCE
  1393. # define _ALL_SOURCE 1
  1394. #endif
  1395. /* Enable GNU extensions on systems that have them. */
  1396. #ifndef _GNU_SOURCE
  1397. # define _GNU_SOURCE 1
  1398. #endif
  1399. /* Enable threading extensions on Solaris. */
  1400. #ifndef _POSIX_PTHREAD_SEMANTICS
  1401. # define _POSIX_PTHREAD_SEMANTICS 1
  1402. #endif
  1403. /* Enable extensions on HP NonStop. */
  1404. #ifndef _TANDEM_SOURCE
  1405. # define _TANDEM_SOURCE 1
  1406. #endif
  1407. /* Enable general extensions on Solaris. */
  1408. #ifndef __EXTENSIONS__
  1409. # define __EXTENSIONS__ 1
  1410. #endif
  1411. /* Define to be the last component of the Windows registry key under which to
  1412. look for installation paths. The full key used will be
  1413. HKEY_LOCAL_MACHINE/SOFTWARE/Free Software Foundation/{WIN32_REGISTRY_KEY}.
  1414. The default is the GCC version number. */
  1415. #ifndef USED_FOR_TARGET
  1416. /* #undef WIN32_REGISTRY_KEY */
  1417. #endif
  1418. /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
  1419. significant byte first (like Motorola and SPARC, unlike Intel). */
  1420. #if defined AC_APPLE_UNIVERSAL_BUILD
  1421. # if defined __BIG_ENDIAN__
  1422. # define WORDS_BIGENDIAN 1
  1423. # endif
  1424. #else
  1425. # ifndef WORDS_BIGENDIAN
  1426. /* # undef WORDS_BIGENDIAN */
  1427. # endif
  1428. #endif
  1429. /* Number of bits in a file offset, on hosts where this is settable. */
  1430. #ifndef USED_FOR_TARGET
  1431. /* #undef _FILE_OFFSET_BITS */
  1432. #endif
  1433. /* Define for large files, on AIX-style hosts. */
  1434. #ifndef USED_FOR_TARGET
  1435. /* #undef _LARGE_FILES */
  1436. #endif
  1437. /* Define to 1 if on MINIX. */
  1438. #ifndef USED_FOR_TARGET
  1439. /* #undef _MINIX */
  1440. #endif
  1441. /* Define to 2 if the system does not provide POSIX.1 features except with
  1442. this defined. */
  1443. #ifndef USED_FOR_TARGET
  1444. /* #undef _POSIX_1_SOURCE */
  1445. #endif
  1446. /* Define to 1 if you need to in order for `stat' and other things to work. */
  1447. #ifndef USED_FOR_TARGET
  1448. /* #undef _POSIX_SOURCE */
  1449. #endif
  1450. /* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
  1451. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  1452. #define below would cause a syntax error. */
  1453. #ifndef USED_FOR_TARGET
  1454. /* #undef _UINT32_T */
  1455. #endif
  1456. /* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
  1457. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  1458. #define below would cause a syntax error. */
  1459. #ifndef USED_FOR_TARGET
  1460. /* #undef _UINT64_T */
  1461. #endif
  1462. /* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
  1463. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  1464. #define below would cause a syntax error. */
  1465. #ifndef USED_FOR_TARGET
  1466. /* #undef _UINT8_T */
  1467. #endif
  1468. /* Define to `char *' if <sys/types.h> does not define. */
  1469. #ifndef USED_FOR_TARGET
  1470. /* #undef caddr_t */
  1471. #endif
  1472. /* Define to `__inline__' or `__inline' if that's what the C compiler
  1473. calls it, or to nothing if 'inline' is not supported under any name. */
  1474. #ifndef __cplusplus
  1475. /* #undef inline */
  1476. #endif
  1477. /* Define to the type of a signed integer type of width exactly 16 bits if
  1478. such a type exists and the standard includes do not define it. */
  1479. #ifndef USED_FOR_TARGET
  1480. /* #undef int16_t */
  1481. #endif
  1482. /* Define to the type of a signed integer type of width exactly 32 bits if
  1483. such a type exists and the standard includes do not define it. */
  1484. #ifndef USED_FOR_TARGET
  1485. /* #undef int32_t */
  1486. #endif
  1487. /* Define to the type of a signed integer type of width exactly 64 bits if
  1488. such a type exists and the standard includes do not define it. */
  1489. #ifndef USED_FOR_TARGET
  1490. /* #undef int64_t */
  1491. #endif
  1492. /* Define to the type of a signed integer type of width exactly 8 bits if such
  1493. a type exists and the standard includes do not define it. */
  1494. #ifndef USED_FOR_TARGET
  1495. /* #undef int8_t */
  1496. #endif
  1497. /* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
  1498. not define. */
  1499. #ifndef USED_FOR_TARGET
  1500. /* #undef intmax_t */
  1501. #endif
  1502. /* Define to the type of a signed integer type wide enough to hold a pointer,
  1503. if such a type exists, and if the system does not define it. */
  1504. #ifndef USED_FOR_TARGET
  1505. /* #undef intptr_t */
  1506. #endif
  1507. /* Define to `int' if <sys/types.h> does not define. */
  1508. #ifndef USED_FOR_TARGET
  1509. /* #undef pid_t */
  1510. #endif
  1511. /* Define to `long' if <sys/resource.h> doesn't define. */
  1512. #ifndef USED_FOR_TARGET
  1513. /* #undef rlim_t */
  1514. #endif
  1515. /* Define to `int' if <sys/types.h> does not define. */
  1516. #ifndef USED_FOR_TARGET
  1517. /* #undef ssize_t */
  1518. #endif
  1519. /* Define to the type of an unsigned integer type of width exactly 16 bits if
  1520. such a type exists and the standard includes do not define it. */
  1521. #ifndef USED_FOR_TARGET
  1522. /* #undef uint16_t */
  1523. #endif
  1524. /* Define to the type of an unsigned integer type of width exactly 32 bits if
  1525. such a type exists and the standard includes do not define it. */
  1526. #ifndef USED_FOR_TARGET
  1527. /* #undef uint32_t */
  1528. #endif
  1529. /* Define to the type of an unsigned integer type of width exactly 64 bits if
  1530. such a type exists and the standard includes do not define it. */
  1531. #ifndef USED_FOR_TARGET
  1532. /* #undef uint64_t */
  1533. #endif
  1534. /* Define to the type of an unsigned integer type of width exactly 8 bits if
  1535. such a type exists and the standard includes do not define it. */
  1536. #ifndef USED_FOR_TARGET
  1537. /* #undef uint8_t */
  1538. #endif
  1539. /* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
  1540. do not define. */
  1541. #ifndef USED_FOR_TARGET
  1542. /* #undef uintmax_t */
  1543. #endif
  1544. /* Define to the type of an unsigned integer type wide enough to hold a
  1545. pointer, if such a type exists, and if the system does not define it. */
  1546. #ifndef USED_FOR_TARGET
  1547. /* #undef uintptr_t */
  1548. #endif
  1549. /* Define as `fork' if `vfork' does not work. */
  1550. #ifndef USED_FOR_TARGET
  1551. /* #undef vfork */
  1552. #endif