IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

RedHat / CentOS / Fedora Discussion :

Problème de compilateur (configure: error: C compiler cannot create executables)


Sujet :

RedHat / CentOS / Fedora

  1. #1
    Membre à l'essai
    Inscrit en
    Juin 2008
    Messages
    25
    Détails du profil
    Informations forums :
    Inscription : Juin 2008
    Messages : 25
    Points : 17
    Points
    17
    Par défaut Problème de compilateur (configure: error: C compiler cannot create executables)
    Bonjour à tous,

    Je travaille avec une distribution fedora et je voudrais créer une configuration de compilation pour une application liée au projet openmoko (téléphone fonctionnant avec un environnement linux). J'effectue alors une commande permettant de vérifier que les bibliothèques et outils nécessaires sont disponibles sur mon système.

    La commande est:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    om-conf openmoko-sample2
    Avec openmoko-sample2 la source code téléchargée de l'application mais lors de la phase de vérification j'ai l'erreur suivante:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    checking for C compiler default output file name...
    configure: error: in `/root/openmoko-sample2':
    configure: error: C compiler cannot create executables
    See `config.log' for more details.
    FATAL: oe_runconf failed
    Aprés de nombreuses recherches et parcourus de nombreux sites, je ne trouve pas de solutions à mon problème.

    J'ai vu que ce problème a déjà été évoqué sur le forum: http://www.developpez.net/forums/d59...e-executables/

    Cependant j'ai installer les paquets glibc-devel:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    yum search glibc-devel
    yum install glibc-devel.i386
    Mais j'ai toujours la même source d'erreur.

    Quelqu'un peut il m'aider ou me donner des indication sme permettant de résoudre le problème?

  2. #2
    Membre chevronné Avatar de jeanbi
    Profil pro
    Inscrit en
    Avril 2003
    Messages
    1 703
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2003
    Messages : 1 703
    Points : 2 247
    Points
    2 247
    Par défaut
    bonjour,
    See `config.log' for more details.
    qu'est ce qu'il raconte le fichier ?
    a+

  3. #3
    Membre à l'essai
    Inscrit en
    Juin 2008
    Messages
    25
    Détails du profil
    Informations forums :
    Inscription : Juin 2008
    Messages : 25
    Points : 17
    Points
    17
    Par défaut
    Voici le contenu du fichier, à vrai dire je comprends pas trop ce qu'il raconte;

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
     
    It was created by openmoko-sample configure 0.0.1, which was
    generated by GNU Autoconf 2.63.  Invocation command line was
     
      $ /root/openmoko-sample2/configure --build=i686-linux --host=arm-angstrom-linux-gnueabi --target=arm-angstrom-linux-gnueabi --prefix=/usr --exec_prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --libexecdir=/usr/libexec --datadir=/usr/share --sysconfdir=/etc --sharedstatedir=/usr/com --localstatedir=/var --libdir=/usr/lib --includedir=/usr/include --oldincludedir=/usr/include --infodir=/usr/share/info --mandir=/usr/share/man --enable-mainainer-mode
     
    ## --------- ##
    ## Platform. ##
    ## --------- ##
     
    hostname = toto
    uname -m = i686
    uname -r = 2.6.27.19-170.2.35.fc10.i686
    uname -s = Linux
    uname -v = #1 SMP Mon Feb 23 13:21:22 EST 2009
     
    /usr/bin/uname -p = unknown
    /bin/uname -X     = unknown
     
    /bin/arch              = i686
    /usr/bin/arch -k       = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo      = unknown
    /bin/machine           = unknown
    /usr/bin/oslevel       = unknown
    /bin/universe          = unknown
     
    PATH: /usr/local/openmoko/arm/bin
    PATH: /usr/lib/qt-3.3/bin
    PATH: /usr/kerberos/sbin
    PATH: /usr/kerberos/bin
    PATH: /usr/local/sbin
    PATH: /usr/local/bin
    PATH: /sbin
    PATH: /bin
    PATH: /usr/sbin
    PATH: /usr/bin
    PATH: /root/bin
    PATH: /usr/local/openmoko/arm/bin
    PATH: /usr/local/openmoko/arm/bin
    PATH: /usr/local/openmoko/arm/bin
    PATH: /usr/local/openmoko/arm/bin
     
     
    ## ----------- ##
    ## Core tests. ##
    ## ----------- ##
     
    configure:1984: loading site script /usr/local/openmoko/arm/site-config
    | ac_cv_c_littleendian=${ac_cv_c_littleendian=yes}
    | ac_cv_c_bigendian=${ac_cv_c_bigendian=no}
    | 
    | # libnet
    | ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil}
    | 
    | # apr
    | ac_cv_file__dev_zero=${ac_cv_file__dev_zero=yes}
    | # general
    | ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes}
    | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes}
    | ac_cv_func_memcmp_working=${ac_cv_func_memcmp_working=yes}
    | ac_cv_type_uid_t={ac_cv_type_uid_t=yes}
    | 
    | # bash
    | bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes}
    | bash_cv_sys_siglist=${bash_cv_sys_siglist=yes}
    | 
    | # clamav
    | clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes}
    | clamav_av_have_in_port_t=${clamav_av_have_in_port_t=yes}
    | clamav_av_have_in_addr_t=${clamav_av_have_in_addr_t=yes}
    | ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes}
    | 
    | # glib
    | glib_cv_strlcpy=${glib_cv_strlcpy=no}
    | ac_cv_func_printf_unix98=${ac_cv_func_printf_unix98=yes}
    | ac_cv_func_snprintf_c99=${ac_cv_func_snprintf_c99=yes}
    | ac_cv_func_vsnprintf_c99=${ac_cv_func_vsnprintf_c99=yes}
    | glib_cv_compliant_posix_memalign=${glib_cv_compliant_posix_memalign=1}
    | glib_cv_long_long_format=${glib_cv_long_long_format=ll}
    | 
    | #dbus-glib
    | ac_cv_have_abstract_sockets=${ac_cv_have_abstract_sockets=yes}
    | 
    | # gnucash
    | am_cv_scanf_lld=${am_cv_scanf_lld=yes}
    | 
    | # mono
    | mono_cv_uscore=${mono_cv_uscore=no}
    | 
    | # guile
    | ac_cv_func_pthread_attr_getstack=${ac_cv_func_pthread_attr_getstack=yes}
    | 
    | #gcc-zlib
    | ac_cv_func_getpagesize=${ac_cv_func_getpagesize=yes}
    | ac_cv_func_memcpy=${ac_cv_func_memcpy=yes}
    | ac_cv_func_strerror=${ac_cv_func_strerror=yes}
    | 
    | # squid
    | ac_cv_af_unix_large_dgram=${ac_cv_af_unix_large_dgram=yes}
    | ac_cv_func_setresuid=${ac_cv_func_setresuid=yes}
    | ac_cv_func_va_copy=${ac_cv_func_va_copy=yes}
    | ac_cv_func___va_copy=${ac_cv_func___va_copy=yes}
    | ac_cv_epoll_works=${ac_cv_epoll_works=yes}
    | 
    | #git
    | ac_cv_fread_reads_directories=${ac_cv_fread_reads_directories=yes}
    | # pth
    | ac_cv_check_sjlj=ssjlj
    | ac_cv_sizeof_char=${ac_cv_sizeof_char=1}
    | ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_int=1}
    | ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4}
    | ac_cv_sizeof_unsigned_char_p=${ac_cv_sizeof_unsigned_char_p=4}
    | ac_cv_sizeof_int=${ac_cv_sizeof_int=4}
    | ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4}
    | ac_cv_sizeof_int_p=${ac_cv_sizeof_int_p=4}
    | ac_cv_sizeof_long=${ac_cv_sizeof_long=4}
    | ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4}
    | ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8}
    | ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8}
    | ac_cv_sizeof_short=${ac_cv_sizeof_short=2}
    | ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2}
    | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4}
    | ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4}
    | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4}
    | ac_cv_sizeof_long_p=${ac_cv_sizeof_long_p=4}
    | ac_cv_sizeof_float=${ac_cv_sizeof_float=4}
    | ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=4}
    | 
    | ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes}
    | ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes}
    | ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes}
    | ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no}
    | ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes}
    | ac_cv_func_malloc_works=${ac_cv_func_malloc_works=yes}
    | ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes}
    | ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes}
    | ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no}
    | ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no}
    | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes}
    | ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no}
    | 
    | ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no}
    | ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no}
    | ac_cv_linux_vers=${ac_cv_linux_vers=2}
    | ac_cv_sctp=${ac_cv_sctp=no}
    | 
    | apr_cv_process_shared_works=${apr_cv_process_shared_works=no}
    | apr_cv_tcp_nodelay_with_cork=${apr_cv_tcp_nodelay_with_cork=yes}
    | 
    | ac_cv_path_ESD_CONFIG=no
    | lf_cv_sane_realloc=yes
    | jm_cv_func_gettimeofday_clobber=no
    | samba_cv_HAVE_GETTIMEOFDAY_TZ=yes
    | bf_lsbf=1
    | ac_cv_sys_restartable_syscalls=yes
    | ac_cv_uchar=${ac_cv_uchar=no}
    | ac_cv_uint=${ac_cv_uint=yes}
    | ac_cv_ulong=${ac_cv_ulong=yes}
    | ac_cv_ushort=${ac_cv_ushort=yes}
    | 
    | # audacity
    | ac_cv_file_lib_src_libmad_frame_h=${ac_cv_file_lib_src_libmad_frame_h=no}
    | 
    | # bash
    | ac_cv_c_long_double=${ac_cv_c_long_double=yes}
    | bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes}
    | bash_cv_func_sigsetjmp=${bash_cv_func_sigsetjmp=missing}
    | bash_cv_must_reinstall_sighandlers=${bash_cv_must_reinstall_sighandlers=no}
    | bash_cv_func_strcoll_broken=${bash_cv_func_strcoll_broken=no}
    | bash_cv_dup2_broken=${bash_cv_dup2_broken=no}
    | bash_cv_opendir_not_robust=${bash_cv_opendir_not_robust=no}
    | bash_cv_type_rlimit=${bash_cv_type_rlimit=rlim_t}
    | bash_cv_getenv_redef=${bash_cv_getenv_redef=yes}
    | bash_cv_ulimit_maxfds=${bash_cv_ulimit_maxfds=yes}
    | bash_cv_getcwd_calls_popen=${bash_cv_getcwd_calls_popen=no}
    | bash_cv_printf_a_format=${bash_cv_printf_a_format=yes}
    | bash_cv_pgrp_pipe=${bash_cv_pgrp_pipe=no}
    | bash_cv_job_control_missing=${bash_cv_job_control_missing=present}
    | bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present}
    | bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no}
    | 
    | # clamav
    | clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes}
    | clamav_av_have_in_port_t=${clamav_av_have_in_port_t=yes}
    | clamav_av_have_in_addr_t=${clamav_av_have_in_addr_t=yes}
    | ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes}
    | 
    | # cvs
    | cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes}
    | 
    | # db
    | db_cv_alignp_t=${db_cv_alignp_t='unsigned long'}
    | db_cv_align_t=${db_cv_align_t='unsigned long long'}
    | db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes}
    | db_cv_mutex=${db_cv_mutex=x86/gcc-assembly}
    | db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar}
    | db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod}
    | db_cv_path_cp=${db_cv_path_cp=/bin/cp}
    | db_cv_path_ln=${db_cv_path_ln=/bin/ln}
    | db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir}
    | db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib}
    | db_cv_path_rm=${db_cv_path_rm=/bin/rm}
    | db_cv_path_sh=${db_cv_path_sh=/bin/sh}
    | db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip}
    | db_cv_posixmutexes=${db_cv_posixmutexes=no}
    | db_cv_sprintf_count=${db_cv_sprintf_count=yes}
    | db_cv_uimutexes=${db_cv_uimutexes=no}
    | 
    | # D-BUS
    | ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes}
    | 
    | dpkg_cv_va_copy=${ac_cv_va_copy=no}
    | dpkg_cv___va_copy=${ac_cv___va_copy=yes}
    | 
    | # enca
    | yeti_cv_func_scanf_modif_size_t=yes
    | 
    | # ettercap
    | ettercap_cv_type_socklen_t=${ettercap_cv_type_socklen_t=yes}
    | 
    | # gettext
    | am_cv_func_working_getline=${am_cv_func_working_getline=yes}
    | 
    | # glib
    | glib_cv_sizeof_system_thread=${glib_cv_sizeof_system_thread=4}
    | glib_cv_has__inline=${glib_cv_has__inline=yes}
    | glib_cv_has__inline__=${glib_cv_has__inline__=yes}
    | glib_cv_hasinline=${glib_cv_hasinline=yes}
    | glib_cv_sane_realloc=${glib_cv_sane_realloc=yes}
    | glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24}
    | glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes}
    | glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes}
    | glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes}
    | glib_cv_uscore=${glib_cv_uscore=no}
    | glib_cv___va_copy=${glib_cv___va_copy=yes}
    | glib_cv_va_copy=${glib_cv_va_copy=yes}
    | glib_cv_va_val_copy=${glib_cv_va_val_copy=yes}
    | glib_cv_rtldglobal_broken=${glib_cv_rtldglobal_broken=yes}
    | 
    | # glib-2.0
    | glib_cv_stack_grows=${glib_cv_stack_grows=no}
    | utils_cv_sys_open_max=${utils_cv_sys_open_max=1015}
    | ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes}
    | glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes}
    | ac_cv_func_posix_getgrgid_r=${ac_cv_func_posix_getgrgid_r=yes}
    | 
    | # guile
    | ac_cv_sys_restartable_syscalls=yes
    | ac_cv_uchar=${ac_cv_uchar=no}
    | ac_cv_uint=${ac_cv_uint=yes}
    | ac_cv_ulong=${ac_cv_ulong=yes}
    | ac_cv_ushort=${ac_cv_ushort=yes}
    | 
    | # intercom
    | ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes}
    | 
    | # ipsec-tools
    | ac_cv_va_copy=${ac_cv_va_copy=no}
    | ac_cv___va_copy=${ac_cv___va_copy=yes}
    | ac_cv_va_val_copy=${ac_cv_va_val_copy=yes}
    | racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no}
    | 
    | # jikes-native
    | ac_cv_sizeof_wchar_t=4
    | 
    | # lftp
    | ac_cv_need_trio=${ac_cv_need_trio=no}
    | lftp_cv_va_copy=${lftp_cv_va_copy=no}
    | lftp_cv___va_copy=${lftp_cv___va_copy=yes}
    | 
    | # libidl
    | libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll}
    | 
    | # libnet 
    | ac_cv_lbl_unaligned_fail=${ac_cv_lbl_unaligned_fail=no}
    | ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes}
    | 
    | # libxfce4util
    | with_broken_putenv=${with_broken_putenv=no}
    | 
    | # mono
    | cv_mono_sizeof_sunpath=108
    | 
    | # mysql
    | mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=yes}
    | mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=yes}
    | ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes}
    | 
    | # ORBit2
    | ac_cv_alignof_CORBA_boolean=1
    | ac_cv_alignof_CORBA_char=1
    | ac_cv_alignof_CORBA_double=4
    | ac_cv_alignof_CORBA_float=4
    | ac_cv_alignof_CORBA_long=4
    | ac_cv_alignof_CORBA_long_double=4
    | ac_cv_alignof_CORBA_long_long=4
    | ac_cv_alignof_CORBA_octet=1
    | ac_cv_alignof_CORBA_pointer=4
    | ac_cv_alignof_CORBA_short=2
    | ac_cv_alignof_CORBA_struct=4
    | ac_cv_alignof_CORBA_wchar=2
    | ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes}
    | 
    | # p3scan
    | ac_cv_func_realloc_0_nonnull=${ac_cv_func_realloc_0_nonnull=yes}
    | 
    | # php
    | ac_cv_pread=${ac_cv_pread=no}
    | ac_cv_pwrite=${ac_cv_pwrite=no}
    | php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes}
    | 
    | # rp-pppoe
    | rpppoe_cv_pack_bitfields=${rpppoe_cv_pack_bitfields=rev}
    | 
    | # rsync
    | rsync_cv_HAVE_BROKEN_LARGEFILE=${rsync_cv_HAVE_BROKEN_LARGEFILE=no}
    | rsync_cv_HAVE_SOCKETPAIR=${rsync_cv_HAVE_SOCKETPAIR=yes}
    | rsync_cv_HAVE_LONGLONG=${rsync_cv_HAVE_LONGLONG=yes}
    | rsync_cv_HAVE_OFF64_T=${rsync_cv_HAVE_OFF64_T=no}
    | rsync_cv_HAVE_SHORT_INO_T=${rsync_cv_HAVE_SHORT_INO_T=no}
    | rsync_cv_HAVE_UNSIGNED_CHAR=${rsync_cv_HAVE_UNSIGNED_CHAR=no}
    | rsync_cv_HAVE_BROKEN_READDIR=${rsync_cv_HAVE_BROKEN_READDIR=no}
    | rsync_cv_HAVE_GETTIMEOFDAY_TZ=${rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes}
    | rsync_cv_HAVE_C99_VSNPRINTF=${rsync_cv_HAVE_C99_VSNPRINTF=yes}
    | rsync_cv_HAVE_SECURE_MKSTEMP=${rsync_cv_HAVE_SECURE_MKSTEMP=yes}
    | rsync_cv_REPLACE_INET_NTOA=${rsync_cv_REPLACE_INET_NTOA=no}
    | rsync_cv_REPLACE_INET_ATON=${rsync_cv_REPLACE_INET_ATON=no}
    | 
    | # samba
    | samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes}
    | 
    | # screen
    | screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no}
    | screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no}
    | screen_cv_sys_memmove_overlap=${screen_cv_sys_memmove_overlap=no}
    | screen_cv_sys_fifo_broken_impl=${screen_cv_sys_fifo_broken_impl=yes}
    | screen_cv_sys_fifo_usable=${screen_cv_sys_fifo_usable=yes}
    | screen_cv_sys_select_broken_retval=${screen_cv_sys_select_broken_retval=no}
    | screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no}
    | screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes}
    | screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes}
    | 
    | # slrn
    | slrn_cv___va_copy=${slrn_cv___va_copy=yes}
    | slrn_cv_va_copy=${slrn_cv_va_copy=no}
    | slrn_cv_va_val_copy=${slrn_cv_va_val_copy=yes}
    | 
    | # ssh
    | ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes}
    | ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no}
    | ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no}
    | ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes}
    | ac_cv_type_struct_timespec=${ac_cv_type_struct_timespec=yes}
    | ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes}
    | 
    | # startup-notification
    | lf_cv_sane_realloc=yes
    | 
    | # sudo
    | sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10}
    | 
    | # xffm
    | jm_cv_func_working_readdir=yes
    | 
    | # xorg X11R7
    | ac_cv_sys_linker_h=${ac_cv_sys_linker_h=no}
    | ac_cv_file__usr_share_X11_sgml_defs_ent=${ac_cv_file__usr_share_X11_sgml_defs_ent=no}
    | 
    | # eds-dbus
    | ac_cv_libiconv_utf8=${ac_cv_libiconv_utf8=yes}
    | 
    | #dbus
    | ac_cv_have_abstract_sockets=${ac_cv_have_abstract_sockets=yes}
    | # libelf
    | mr_cv_target_elf=${mr_cv_target_elf=yes}
    | 
    | # Normally kernels have /dev/random enabled
    | ac_cv_file__dev_random=${ac_cv_file__dev_random=yes}
    | 
    | # does compiler handle IEEE math?
    | rd_cv_ieee_works=${rd_cv_ieee_works=yes}
    | # libelf
    | mr_cv_target_elf=${mr_cv_target_elf=yes}
    | 
    | # Normally kernels have /dev/random enabled
    | ac_cv_file__dev_random=${ac_cv_file__dev_random=yes}
    | 
    | # does compiler handle IEEE math?
    | rd_cv_ieee_works=${rd_cv_ieee_works=yes}
    configure:2146: checking for a BSD-compatible install
    configure:2214: result: /usr/bin/install -c
    configure:2225: checking whether build environment is sane
    configure:2268: result: yes
    configure:2293: checking for a thread-safe mkdir -p
    configure:2332: result: /bin/mkdir -p
    configure:2345: checking for gawk
    configure:2361: found /bin/gawk
    configure:2372: result: gawk
    configure:2383: checking whether make sets $(MAKE)
    configure:2405: result: yes
    configure:2485: checking for arm-angstrom-linux-gnueabi-strip
    configure:2512: result: arm-angstrom-linux-gnueabi-strip
    configure:2592: checking whether to enable maintainer-specific portions of Makefiles
    configure:2601: result: no
    configure:2627: checking for style of include used by make
    configure:2655: result: GNU
    configure:2685: checking for arm-angstrom-linux-gnueabi-gcc
    configure:2712: result: ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t
    configure:2984: checking for C compiler version
    configure:2992: ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t --version >&5
    /root/openmoko-sample2/configure: line 2994: ccache: command not found
    configure:2996: $? = 127
    configure:3003: ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t -v >&5
    /root/openmoko-sample2/configure: line 3005: ccache: command not found
    configure:3007: $? = 127
    configure:3014: ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t -V >&5
    /root/openmoko-sample2/configure: line 3016: ccache: command not found
    configure:3018: $? = 127
    configure:3041: checking for C compiler default output file name
    configure:3063: ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t -isystem/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/include -fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os -isystem/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/include -L/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/lib -Wl,-rpath-link,/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/lib -Wl,-O1 conftest.c  >&5
    /root/openmoko-sample2/configure: line 3065: ccache: command not found
    configure:3067: $? = 127
    configure:3105: result: 
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME "openmoko-sample"
    | #define PACKAGE_TARNAME "openmoko-sample"
    | #define PACKAGE_VERSION "0.0.1"
    | #define PACKAGE_STRING "openmoko-sample 0.0.1"
    | #define PACKAGE_BUGREPORT "http://www.openmoko.org/"
    | #define PACKAGE "openmoko-sample"
    | #define VERSION "0.0.1"
    | /* end confdefs.h.  */
    | 
    | int
    | main ()
    | {
    | 
    |   ;
    |   return 0;
    | }
    configure:3111: error: in `/root/openmoko-sample2':
    configure:3114: error: C compiler cannot create executables
    See `config.log' for more details.
     
    ## ---------------- ##
    ## Cache variables. ##
    ## ---------------- ##
     
    ac_cv___va_copy=yes
    ac_cv_af_unix_large_dgram=yes
    ac_cv_alignof_CORBA_boolean=1
    ac_cv_alignof_CORBA_char=1
    ac_cv_alignof_CORBA_double=4
    ac_cv_alignof_CORBA_float=4
    ac_cv_alignof_CORBA_long=4
    ac_cv_alignof_CORBA_long_double=4
    ac_cv_alignof_CORBA_long_long=4
    ac_cv_alignof_CORBA_octet=1
    ac_cv_alignof_CORBA_pointer=4
    ac_cv_alignof_CORBA_short=2
    ac_cv_alignof_CORBA_struct=4
    ac_cv_alignof_CORBA_wchar=2
    ac_cv_c_bigendian=no
    ac_cv_c_littleendian=yes
    ac_cv_c_long_double=yes
    ac_cv_check_sjlj=ssjlj
    ac_cv_conv_longlong_to_float=yes
    ac_cv_dirent_have_space_d_name=yes
    ac_cv_env_CCC_set=
    ac_cv_env_CCC_value=
    ac_cv_env_CC_set=set
    ac_cv_env_CC_value='ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t'
    ac_cv_env_CFLAGS_set=set
    ac_cv_env_CFLAGS_value='-isystem/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/include -fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os'
    ac_cv_env_CPPFLAGS_set=set
    ac_cv_env_CPPFLAGS_value=-isystem/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/include
    ac_cv_env_CPP_set=set
    ac_cv_env_CPP_value='arm-angstrom-linux-gnueabi-gcc -E'
    ac_cv_env_CXXCPP_set=
    ac_cv_env_CXXCPP_value=
    ac_cv_env_CXXFLAGS_set=set
    ac_cv_env_CXXFLAGS_value='-isystem/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/include -fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os -fpermissive -fvisibility-inlines-hidden'
    ac_cv_env_CXX_set=set
    ac_cv_env_CXX_value='ccache arm-angstrom-linux-gnueabi-g++ -march=armv4t -mtune=arm920t'
    ac_cv_env_DEPENDENCIES_CFLAGS_set=
    ac_cv_env_DEPENDENCIES_CFLAGS_value=
    ac_cv_env_DEPENDENCIES_LIBS_set=
    ac_cv_env_DEPENDENCIES_LIBS_value=
    ac_cv_env_F77_set=set
    ac_cv_env_F77_value='ccache arm-angstrom-linux-gnueabi-g77 -march=armv4t -mtune=arm920t'
    ac_cv_env_FFLAGS_set=
    ac_cv_env_FFLAGS_value=
    ac_cv_env_LDFLAGS_set=set
    ac_cv_env_LDFLAGS_value='-L/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/lib -Wl,-rpath-link,/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/lib -Wl,-O1'
    ac_cv_env_LIBS_set=
    ac_cv_env_LIBS_value=
    ac_cv_env_PKG_CONFIG_set=
    ac_cv_env_PKG_CONFIG_value=
    ac_cv_env_build_alias_set=set
    ac_cv_env_build_alias_value=i686-linux
    ac_cv_env_host_alias_set=set
    ac_cv_env_host_alias_value=arm-angstrom-linux-gnueabi
    ac_cv_env_target_alias_set=set
    ac_cv_env_target_alias_value=arm-angstrom-linux-gnueabi
    ac_cv_epoll_works=yes
    ac_cv_file__dev_random=yes
    ac_cv_file__dev_zero=yes
    ac_cv_file__usr_share_X11_sgml_defs_ent=no
    ac_cv_file_lib_src_libmad_frame_h=no
    ac_cv_fread_reads_directories=yes
    ac_cv_func___va_copy=yes
    ac_cv_func_fnmatch_works=yes
    ac_cv_func_getaddrinfo=yes
    ac_cv_func_getpagesize=yes
    ac_cv_func_getpgrp_void=yes
    ac_cv_func_getpwuid_r=yes
    ac_cv_func_lstat_dereferences_slashed_symlink=yes
    ac_cv_func_lstat_empty_string_bug=no
    ac_cv_func_malloc_0_nonnull=yes
    ac_cv_func_malloc_works=yes
    ac_cv_func_memcmp_working=yes
    ac_cv_func_memcpy=yes
    ac_cv_func_mmap_fixed_mapped=yes
    ac_cv_func_posix_getgrgid_r=yes
    ac_cv_func_posix_getpwnam_r=yes
    ac_cv_func_posix_getpwuid_r=yes
    ac_cv_func_printf_unix98=yes
    ac_cv_func_pthread_attr_getstack=yes
    ac_cv_func_pthread_key_delete=yes
    ac_cv_func_realloc_0_nonnull=yes
    ac_cv_func_setpgrp_void=yes
    ac_cv_func_setresuid=yes
    ac_cv_func_setvbuf_reversed=no
    ac_cv_func_snprintf_c99=yes
    ac_cv_func_stat_empty_string_bug=no
    ac_cv_func_stat_ignores_trailing_slash=no
    ac_cv_func_strerror=yes
    ac_cv_func_va_copy=yes
    ac_cv_func_vsnprintf_c99=yes
    ac_cv_have_abstract_sockets=yes
    ac_cv_have_accrights_in_msghdr=no
    ac_cv_have_broken_snprintf=no
    ac_cv_have_control_in_msghdr=yes
    ac_cv_have_decl_sys_siglist=yes
    ac_cv_have_openpty_ctty_bug=yes
    ac_cv_have_space_d_name_in_struct_dirent=yes
    ac_cv_header_netinet_sctp_h=no
    ac_cv_header_netinet_sctp_uio_h=no
    ac_cv_lbl_unaligned_fail=no
    ac_cv_libiconv_utf8=yes
    ac_cv_libnet_endianess=lil
    ac_cv_linux_vers=2
    ac_cv_need_trio=no
    ac_cv_path_ESD_CONFIG=no
    ac_cv_path_install='/usr/bin/install -c'
    ac_cv_path_mkdir=/bin/mkdir
    ac_cv_pread=no
    ac_cv_prog_AWK=gawk
    ac_cv_prog_CC='ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t'
    ac_cv_prog_STRIP=arm-angstrom-linux-gnueabi-strip
    ac_cv_prog_make_make_set=yes
    ac_cv_pwrite=no
    ac_cv_sctp=no
    ac_cv_sizeof_char=1
    ac_cv_sizeof_char_p=4
    ac_cv_sizeof_float=4
    ac_cv_sizeof_int=4
    ac_cv_sizeof_int_p=4
    ac_cv_sizeof_long=4
    ac_cv_sizeof_long_long=8
    ac_cv_sizeof_long_p=4
    ac_cv_sizeof_off_t=4
    ac_cv_sizeof_short=2
    ac_cv_sizeof_size_t=4
    ac_cv_sizeof_ssize_t=4
    ac_cv_sizeof_unsigned_char=1
    ac_cv_sizeof_unsigned_char_p=4
    ac_cv_sizeof_unsigned_int=1
    ac_cv_sizeof_unsigned_long=4
    ac_cv_sizeof_unsigned_long_long=8
    ac_cv_sizeof_unsigned_short=2
    ac_cv_sizeof_void_p=4
    ac_cv_sizeof_wchar_t=4
    ac_cv_sys_linker_h=no
    ac_cv_sys_restartable_syscalls=yes
    ac_cv_type_struct_timespec=yes
    ac_cv_type_uid_t='{ac_cv_type_uid_t=yes}'
    ac_cv_uchar=no
    ac_cv_uint=yes
    ac_cv_ulong=yes
    ac_cv_ushort=yes
    ac_cv_va_copy=no
    ac_cv_va_val_copy=yes
    am_cv_func_working_getline=yes
    am_cv_scanf_lld=yes
    apr_cv_process_shared_works=no
    apr_cv_tcp_nodelay_with_cork=yes
    bash_cv_dup2_broken=no
    bash_cv_func_sigsetjmp=missing
    bash_cv_func_strcoll_broken=no
    bash_cv_getcwd_calls_popen=no
    bash_cv_getenv_redef=yes
    bash_cv_have_mbstate_t=yes
    bash_cv_job_control_missing=present
    bash_cv_must_reinstall_sighandlers=no
    bash_cv_opendir_not_robust=no
    bash_cv_pgrp_pipe=no
    bash_cv_printf_a_format=yes
    bash_cv_sys_named_pipes=present
    bash_cv_sys_siglist=yes
    bash_cv_type_rlimit=rlim_t
    bash_cv_ulimit_maxfds=yes
    bash_cv_under_sys_siglist=yes
    bash_cv_unusable_rtsigs=no
    cvs_cv_func_printf_ptr=yes
    db_cv_align_t='unsigned long long'
    db_cv_alignp_t='unsigned long'
    db_cv_fcntl_f_setfd=yes
    db_cv_mutex=x86/gcc-assembly
    db_cv_path_ar=/usr/bin/ar
    db_cv_path_chmod=/bin/chmod
    db_cv_path_cp=/bin/cp
    db_cv_path_ln=/bin/ln
    db_cv_path_mkdir=/bin/mkdir
    db_cv_path_ranlib=/usr/bin/ranlib
    db_cv_path_rm=/bin/rm
    db_cv_path_sh=/bin/sh
    db_cv_path_strip=/usr/bin/strip
    db_cv_posixmutexes=no
    db_cv_sprintf_count=yes
    db_cv_uimutexes=no
    dpkg_cv___va_copy=yes
    dpkg_cv_va_copy=no
    ettercap_cv_type_socklen_t=yes
    glib_cv___va_copy=yes
    glib_cv_compliant_posix_memalign=1
    glib_cv_has__inline=yes
    glib_cv_has__inline__=yes
    glib_cv_hasinline=yes
    glib_cv_long_long_format=ll
    glib_cv_rtldglobal_broken=yes
    glib_cv_sane_realloc=yes
    glib_cv_sizeof_gmutex=24
    glib_cv_sizeof_system_thread=4
    glib_cv_stack_grows=no
    glib_cv_strlcpy=no
    glib_cv_sys_pthread_cond_timedwait_posix=yes
    glib_cv_sys_pthread_getspecific_posix=yes
    glib_cv_sys_pthread_mutex_trylock_posix=yes
    glib_cv_uscore=no
    glib_cv_use_pid_surrogate=yes
    glib_cv_va_copy=yes
    glib_cv_va_val_copy=yes
    jm_cv_func_gettimeofday_clobber=no
    jm_cv_func_working_readdir=yes
    lf_cv_sane_realloc=yes
    lftp_cv___va_copy=yes
    lftp_cv_va_copy=no
    libIDL_cv_long_long_format=ll
    mono_cv_uscore=no
    mr_cv_target_elf=yes
    mysql_cv_func_atomic_add=yes
    mysql_cv_func_atomic_sub=yes
    php_cv_lib_cookie_io_functions_use_off64_t=yes
    racoon_cv_bug_getaddrinfo=no
    rd_cv_ieee_works=yes
    rpppoe_cv_pack_bitfields=rev
    rsync_cv_HAVE_BROKEN_LARGEFILE=no
    rsync_cv_HAVE_BROKEN_READDIR=no
    rsync_cv_HAVE_C99_VSNPRINTF=yes
    rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes
    rsync_cv_HAVE_LONGLONG=yes
    rsync_cv_HAVE_OFF64_T=no
    rsync_cv_HAVE_SECURE_MKSTEMP=yes
    rsync_cv_HAVE_SHORT_INO_T=no
    rsync_cv_HAVE_SOCKETPAIR=yes
    rsync_cv_HAVE_UNSIGNED_CHAR=no
    rsync_cv_REPLACE_INET_ATON=no
    rsync_cv_REPLACE_INET_NTOA=no
    samba_cv_HAVE_GETTIMEOFDAY_TZ=yes
    screen_cv_sys_bcopy_overlap=no
    screen_cv_sys_fifo_broken_impl=yes
    screen_cv_sys_fifo_usable=yes
    screen_cv_sys_memcpy_overlap=no
    screen_cv_sys_memmove_overlap=no
    screen_cv_sys_select_broken_retval=no
    screen_cv_sys_sockets_nofs=no
    screen_cv_sys_sockets_usable=yes
    screen_cv_sys_terminfo_used=yes
    slrn_cv___va_copy=yes
    slrn_cv_va_copy=no
    slrn_cv_va_val_copy=yes
    sudo_cv_uid_t_len=10
    utils_cv_sys_open_max=1015
    yeti_cv_func_scanf_modif_size_t=yes

  4. #4
    Membre à l'essai
    Inscrit en
    Juin 2008
    Messages
    25
    Détails du profil
    Informations forums :
    Inscription : Juin 2008
    Messages : 25
    Points : 17
    Points
    17
    Par défaut
    et voici la suite et la fin du fichier en question:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    ## ----------------- ##
    ## Output variables. ##
    ## ----------------- ##
     
    ACLOCAL='${SHELL} /root/openmoko-sample2/missing --run aclocal-1.10'
    ALL_LINGUAS=''
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='${SHELL} /root/openmoko-sample2/missing --run tar'
    AR='arm-angstrom-linux-gnueabi-ar'
    AUTOCONF='${SHELL} /root/openmoko-sample2/missing --run autoconf'
    AUTOHEADER='${SHELL} /root/openmoko-sample2/missing --run autoheader'
    AUTOMAKE='${SHELL} /root/openmoko-sample2/missing --run automake-1.10'
    AWK='gawk'
    CATALOGS=''
    CATOBJEXT=''
    CC='ccache arm-angstrom-linux-gnueabi-gcc -march=armv4t -mtune=arm920t'
    CCDEPMODE=''
    CFLAGS='-isystem/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/include -fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os'
    CPP='arm-angstrom-linux-gnueabi-gcc -E'
    CPPFLAGS='-isystem/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/include'
    CXX='ccache arm-angstrom-linux-gnueabi-g++ -march=armv4t -mtune=arm920t'
    CXXCPP=''
    CXXDEPMODE=''
    CXXFLAGS='-isystem/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/include -fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os -fpermissive -fvisibility-inlines-hidden'
    CYGPATH_W='echo'
    DATADIRNAME=''
    DEFS=''
    DEPDIR='.deps'
    DEPENDENCIES=''
    DEPENDENCIES_CFLAGS=''
    DEPENDENCIES_LIBS=''
    DSYMUTIL=''
    ECHO='echo'
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EGREP=''
    EXEEXT=''
    F77='ccache arm-angstrom-linux-gnueabi-g77 -march=armv4t -mtune=arm920t'
    FFLAGS=''
    GETTEXT_PACKAGE=''
    GMOFILES=''
    GMSGFMT=''
    GREP=''
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    INSTOBJEXT=''
    INTLLIBS=''
    INTLTOOL_CAVES_RULE=''
    INTLTOOL_DESKTOP_RULE=''
    INTLTOOL_DIRECTORY_RULE=''
    INTLTOOL_EXTRACT=''
    INTLTOOL_KBD_RULE=''
    INTLTOOL_KEYS_RULE=''
    INTLTOOL_MERGE=''
    INTLTOOL_OAF_RULE=''
    INTLTOOL_PERL=''
    INTLTOOL_POLICY_RULE=''
    INTLTOOL_PONG_RULE=''
    INTLTOOL_PROP_RULE=''
    INTLTOOL_SCHEMAS_RULE=''
    INTLTOOL_SERVER_RULE=''
    INTLTOOL_SERVICE_RULE=''
    INTLTOOL_SHEET_RULE=''
    INTLTOOL_SOUNDLIST_RULE=''
    INTLTOOL_THEME_RULE=''
    INTLTOOL_UI_RULE=''
    INTLTOOL_UPDATE=''
    INTLTOOL_XAM_RULE=''
    INTLTOOL_XML_NOMERGE_RULE=''
    INTLTOOL_XML_RULE=''
    LDFLAGS='-L/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/lib -Wl,-rpath-link,/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/lib -Wl,-O1'
    LIBOBJS=''
    LIBS=''
    LIBTOOL=''
    LN_S=''
    LTLIBOBJS=''
    MAINT='#'
    MAINTAINER_MODE_FALSE=''
    MAINTAINER_MODE_TRUE='#'
    MAKEINFO='${SHELL} /root/openmoko-sample2/missing --run makeinfo'
    MKDIR_P='/bin/mkdir -p'
    MKINSTALLDIRS=''
    MSGFMT=''
    MSGFMT_OPTS=''
    MSGMERGE=''
    NMEDIT=''
    OBJEXT=''
    PACKAGE='openmoko-sample'
    PACKAGE_BUGREPORT='http://www.openmoko.org/'
    PACKAGE_NAME='openmoko-sample'
    PACKAGE_STRING='openmoko-sample 0.0.1'
    PACKAGE_TARNAME='openmoko-sample'
    PACKAGE_VERSION='0.0.1'
    PATH_SEPARATOR=':'
    PKG_CONFIG=''
    POFILES=''
    POSUB=''
    PO_IN_DATADIR_FALSE=''
    PO_IN_DATADIR_TRUE=''
    RANLIB='arm-angstrom-linux-gnueabi-ranlib'
    SED=''
    SET_MAKE=''
    SHELL='/bin/sh'
    STRIP='arm-angstrom-linux-gnueabi-strip'
    USE_NLS=''
    VERSION='0.0.1'
    XGETTEXT=''
    ac_ct_CC=''
    ac_ct_CXX=''
    ac_ct_F77=''
    am__fastdepCC_FALSE=''
    am__fastdepCC_TRUE=''
    am__fastdepCXX_FALSE=''
    am__fastdepCXX_TRUE=''
    am__include='include'
    am__isrc=''
    am__leading_dot='.'
    am__quote=''
    am__tar='${AMTAR} chof - "$$tardir"'
    am__untar='${AMTAR} xf -'
    bindir='/usr/bin'
    build='i686-linux'
    build_alias='i686-linux'
    build_cpu=''
    build_os=''
    build_vendor=''
    datadir='/usr/share'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
    dvidir='${docdir}'
    exec_prefix='/usr'
    host='arm-angstrom-linux-gnueabi'
    host_alias='arm-angstrom-linux-gnueabi'
    host_cpu=''
    host_os=''
    host_vendor=''
    htmldir='${docdir}'
    includedir='/usr/include'
    infodir='/usr/share/info'
    install_sh='$(SHELL) /root/openmoko-sample2/install-sh'
    libdir='/usr/lib'
    libexecdir='/usr/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='/var'
    mandir='/usr/share/man'
    mkdir_p='/bin/mkdir -p'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/usr'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='/usr/sbin'
    sharedstatedir='/usr/com'
    sysconfdir='/etc'
    target_alias='arm-angstrom-linux-gnueabi'
     
    ## ----------- ##
    ## confdefs.h. ##
    ## ----------- ##
     
    #define PACKAGE_NAME "openmoko-sample"
    #define PACKAGE_TARNAME "openmoko-sample"
    #define PACKAGE_VERSION "0.0.1"
    #define PACKAGE_STRING "openmoko-sample 0.0.1"
    #define PACKAGE_BUGREPORT "http://www.openmoko.org/"
    #define PACKAGE "openmoko-sample"
    #define VERSION "0.0.1"
     
    configure: exit 77

Discussions similaires

  1. Réponses: 2
    Dernier message: 25/02/2013, 10h36
  2. Réponses: 0
    Dernier message: 22/04/2012, 15h30
  3. Problème compilation : Cannot find -lglut32.lib
    Par frogway dans le forum Code::Blocks
    Réponses: 0
    Dernier message: 31/01/2009, 21h17
  4. configure: error: C compiler cannot create executables
    Par vincent_roye dans le forum Réseau
    Réponses: 9
    Dernier message: 01/08/2008, 08h48
  5. [MFC] Error de compilation
    Par jagboys dans le forum MFC
    Réponses: 3
    Dernier message: 08/02/2005, 14h18

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo