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

Interfaces de programmation Oracle Discussion :

OCILIB sous AIX 5.3


Sujet :

Interfaces de programmation Oracle

  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    44
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 44
    Par défaut OCILIB sous AIX 5.3
    Bonjour,

    Je dois utiliser la librairie ocilib dans un environnement AIX 5.3 sur ORACLE 10.2

    voici le code test :
    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
     
    #include "ocilib.h"
     
     
    int main(int argc, char* argv[])
    {  
        /* ------------------------ INITIALIZE OCI -------------------------- */
     
        if (!OCI_Initialize("", "", OCI_ENV_DEFAULT))
        {
            printf("KO");
            return EXIT_FAILURE;
        }
        else
            printf("OK");
        OCI_Cleanup();
        return EXIT_SUCCESS;
    }
    voici ma commande compilation :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    g++ -I$HOME/include -DOCI_IMPORT_LINKAGE -DOCILIB_CHARSET_ANSI -L/appli/oracle/product/10.2.0/lib -lclntsh  -L$HOME/lib -locilib -g test.cpp -o main
    J'obtiens un core dump, et le gdb affiche ceci :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
     
    (gdb) backtrace
    #0  0xd2a7a774 in OCIEnvCreate ()
       from $HOME/lib/libocilib.a(libocilib.so.3)
    #1  0xd2a7a2dc in OCI_Initialize (err_handler=0, home=0x2 "", mode=0)
        at library.c:792
    #2  0x10000394 in main (argc=1, argv=0x2ff22aa0) at test.cpp:8
    (gdb) up
    #1  0xd2a7a2dc in OCI_Initialize (err_handler=0, home=0x2 "", mode=0)
        at library.c:792
    792     library.c: A file or directory in the path name does not exist..
            in library.c
    Current language:  auto; currently c
    Voici la ligne dans le fichier library.c correspondant à cette erreur :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
      +792          res = res && (OCI_SUCCESS == OCIEnvCreate(&OCILib.env, oci_mode,
      +793                                                    (dvoid *) NULL, NULL, NULL, NULL,
      +794                                                    (size_t) 0, (dvoid **) NULL));
    Pouvez-vous m'aider?
    Est-ce un problème de compilation et d'installation de la librairie OCILIB?

    Merci,

  2. #2
    Membre confirmé
    Profil pro
    Développeur informatique
    Inscrit en
    Octobre 2008
    Messages
    136
    Détails du profil
    Informations personnelles :
    Localisation : France, Hérault (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Octobre 2008
    Messages : 136
    Par défaut
    A mon avis, passer une chaine vide sur le premier paramètre ne lui plait pas du tout. Je suis meme étonné que ton compilateur arrive à compiler, je viens de tester il me fait un énorme warning.

    Normalement tu doit lui passer un pointeur sur une fonction de callback utilisée lorsqu'une erreur est rencontrée.

    Passe lui NULL si tu ne veux pas récupérer la gestion de erreurs, ou créé une fonction qui par exemple affiche le number d'erreur et le message.

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    44
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 44
    Par défaut
    J'ai modifié avec ceci :

    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
     
    #include "ocilib.h"
     
     
    int main(int argc, char* argv[])
    {  
        /* ------------------------ INITIALIZE OCI -------------------------- */
     
        IF (!OCI_Initialize(NULL, NULL, OCI_ENV_DEFAULT))
        {
            printf("KO");
            RETURN EXIT_FAILURE;
        }
        else
            printf("OK");
        OCI_Cleanup();
        RETURN EXIT_SUCCESS;
    }

    même résultat...

  4. #4
    Membre confirmé
    Profil pro
    Développeur informatique
    Inscrit en
    Octobre 2008
    Messages
    136
    Détails du profil
    Informations personnelles :
    Localisation : France, Hérault (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Octobre 2008
    Messages : 136
    Par défaut
    Tu peux afficher l'erreur qui est affichée par gdb ? (segmentation fault, access violation , etc...)


    Tu as bien mis les chemin vers les libs dans ton LD_LIBRARY_PATH ?

  5. #5
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    44
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 44
    Par défaut
    voilà ce que dit gdb :

    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
     
     
    Breakpoint 1 at 0x10000384: file test.cpp, line 8.
    (gdb) run
    Starting program: /main
    s
    Breakpoint 1, main (argc=1, argv=0x2ff22ab0) at test.cpp:8
    8           if (!OCI_Initialize(NULL, NULL, OCI_ENV_DEFAULT))
    (gdb) step
    OCI_Initialize (err_handler=0, home=0x0, mode=0) at library.c:294
    warning: Source file is more recent than executable.
     
    294         if (OCILib.ver_compile > 0)
    Current language:  auto; currently c
    (gdb)
    297         memset(&OCILib, 0, sizeof(OCI_Library));
    (gdb)
    787             if (mode & OCI_ENV_THREADED)
    (gdb)
    310         OCILib.use_lob_ub8 = TRUE;
    (gdb)
    299         OCILib.error_handler  = err_handler;
    (gdb)
    302         OCILib.env_mode       = mode;
    (gdb)
    300         OCILib.ver_compile    = OCI_VERSION_COMPILE;
    (gdb)
    316         OCILib.use_scrollable_cursors = TRUE;
    (gdb)
    310         OCILib.use_lob_ub8 = TRUE;
    (gdb)
    787             if (mode & OCI_ENV_THREADED)
    (gdb)
    301         OCILib.ver_runtime    = OCI_VERSION_RUNTIME;
    (gdb)
    300         OCILib.ver_compile    = OCI_VERSION_COMPILE;
    (gdb)
    792             res = res && (OCI_SUCCESS == OCIEnvCreate(&OCILib.env, oci_mode, (dvoid *) NULL, NULL, NULL, NULL, (size_t) 0, (dvoid **) NULL));
    (gdb)
     
    Program received signal SIGSEGV, Segmentation fault.
    0xd2a7a774 in OCIEnvCreate () from $HOME/lib/libocilib.a(libocilib.so.3)
    L'erreur proviendrait de libocilib.a?

  6. #6
    Rédacteur
    Avatar de Vincent Rogier
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    2 373
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 2 373
    Par défaut
    Bonjour,

    ce n'est un problème de compilation en lui même...

    Postes le log du configure de l'install de OCILIB
    Postes te contenu de tes variables LD_LIBRARY_PATH, ORACLE_HOME

    Ta machine est une 32 bits ou une 64 bits ?
    ton ORACLe_HOME possède t il un \lib ? un \lib32 ? un \lib64 ?

    le segfault est provoqué par l'appel à OCIEnvCreate() qui est la première fonction OCI appelée. Donc quelque chose fouarre avec cet appel. Ce ne sont pas les paramètres (un pointeur et un int et que des null) mais l'appel de fonction lui même... Soucis de 32/64bits ?

    Postes donc les infos demandée, stp..

    Dans tout les cas, a ta place, je désintallerai ocilib puis referai une install propre pour voir...
    Vincent Rogier.

    Rubrique ORACLE : Accueil - Forum - Tutoriels - FAQ - Livres - Blog

    Vous voulez contribuer à la rubrique Oracle ? Contactez la rubrique !

    OCILIB (C Driver for Oracle)

    Librairie C Open Source multi-plateformes pour accéder et manipuler des bases de données Oracle

  7. #7
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    44
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 44
    Par défaut
    Voici le config log :
    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
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
     
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
     
    It was created by configure, which was
    generated by GNU Autoconf 2.61.  Invocation command line was
     
      $ ./configure --prefix=$HOME --exec-prefix=$HOME --with-template=aix_gcc
     
    ## --------- ##
    ## Platform. ##
    ## --------- ##
     
    hostname = bmc2
    uname -m = 00CCBEDF4C00
    uname -r = 3
    uname -s = AIX
    uname -v = 5
     
    /usr/bin/uname -p = powerpc
    /bin/uname -X     = unknown
     
    /bin/arch              = unknown
    /usr/bin/arch -k       = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo      = unknown
    /bin/machine           = unknown
    /usr/bin/oslevel       = 5.3.0.0
    /bin/universe          = unknown
     
    PATH: /usr/bin
    PATH: /etc
    PATH: /usr/sbin
    PATH: /usr/ucb
    PATH: $HOME/bin
    PATH: /usr/bin/X11
    PATH: /sbin
    PATH: .
     
     
    ## ----------- ##
    ## Core tests. ##
    ## ----------- ##
     
    configure:1990: checking for a BSD-compatible install
    configure:2046: result: config/install-sh -c
    configure:2057: checking whether build environment is sane
    configure:2100: result: yes
    configure:2128: checking for a thread-safe mkdir -p
    configure:2167: result: config/install-sh -c -d
    configure:2180: checking for gawk
    configure:2210: result: no
    configure:2180: checking for mawk
    configure:2210: result: no
    configure:2180: checking for nawk
    configure:2196: found /usr/bin/nawk
    configure:2207: result: nawk
    configure:2218: checking whether make sets $(MAKE)
    configure:2239: result: yes
    configure:2478: checking for gcc
    configure:2494: found /usr/bin/gcc
    configure:2505: result: gcc
    configure:2743: checking for C compiler version
    configure:2750: gcc --version >&5
    gcc (GCC) 4.2.0
    Copyright (C) 2007 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     
    configure:2753: $? = 0
    configure:2760: gcc -v >&5
    Using built-in specs.
    Target: powerpc-ibm-aix5.3.0.0
    Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --enable-languages=c,c++,java --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0 --target=powerpc-ibm-aix5.3.0.0 --build=powerpc-ibm-aix5.3.0.0 --disable-libjava-multilib
    Thread model: aix
    gcc version 4.2.0
    configure:2763: $? = 0
    configure:2770: gcc -V >&5
    gcc: '-V' option must have argument
    configure:2773: $? = 1
    configure:2796: checking for C compiler default output file name
    configure:2823: gcc    conftest.c  >&5
    configure:2826: $? = 0
    configure:2864: result: a.out
    configure:2881: checking whether the C compiler works
    configure:2891: ./a.out
    configure:2894: $? = 0
    configure:2911: result: yes
    configure:2918: checking whether we are cross compiling
    configure:2920: result: no
    configure:2923: checking for suffix of executables
    configure:2930: gcc -o conftest    conftest.c  >&5
    configure:2933: $? = 0
    configure:2957: result: 
    configure:2963: checking for suffix of object files
    configure:2989: gcc -c   conftest.c >&5
    configure:2992: $? = 0
    configure:3015: result: o
    configure:3019: checking whether we are using the GNU C compiler
    configure:3048: gcc -c   conftest.c >&5
    configure:3054: $? = 0
    configure:3071: result: yes
    configure:3076: checking whether gcc accepts -g
    configure:3106: gcc -c -g  conftest.c >&5
    configure:3112: $? = 0
    configure:3211: result: yes
    configure:3228: checking for gcc option to accept ISO C89
    configure:3302: gcc  -c -g -O2  conftest.c >&5
    configure:3308: $? = 0
    configure:3331: result: none needed
    configure:3360: checking for style of include used by make
    configure:3388: result: GNU
    configure:3413: checking dependency style of gcc
    configure:3504: result: gcc3
    configure:3532: checking for a BSD-compatible install
    configure:3588: result: config/install-sh -c
    configure:3677: checking build system type
    configure:3695: result: powerpc-ibm-aix5.3.0.0
    configure:3717: checking host system type
    configure:3732: result: powerpc-ibm-aix5.3.0.0
    configure:3754: checking for a sed that does not truncate output
    configure:3810: result: /usr/bin/sed
    configure:3813: checking for grep that handles long lines and -e
    configure:3887: result: /usr/bin/grep
    configure:3892: checking for egrep
    configure:3970: result: /usr/bin/grep -E
    configure:3986: checking for ld used by gcc
    configure:4053: result: /usr/bin/ld
    configure:4062: checking if the linker (/usr/bin/ld) is GNU ld
    configure:4077: result: no
    configure:4082: checking for /usr/bin/ld option to reload object files
    configure:4089: result: -r
    configure:4107: checking for BSD-compatible nm
    configure:4156: result: /usr/bin/nm -B
    configure:4160: checking whether ln -s works
    configure:4164: result: yes
    configure:4171: checking how to recognize dependent libraries
    configure:4357: result: pass_all
    configure:4598: checking how to run the C preprocessor
    configure:4638: gcc -E  conftest.c
    configure:4644: $? = 0
    configure:4675: gcc -E  conftest.c
    conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
    configure:4681: $? = 1
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE "ocilib"
    | #define VERSION "3.0.1"
    | /* end confdefs.h.  */
    | #include <ac_nonexistent.h>
    configure:4714: result: gcc -E
    configure:4743: gcc -E  conftest.c
    configure:4749: $? = 0
    configure:4780: gcc -E  conftest.c
    conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
    configure:4786: $? = 1
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE "ocilib"
    | #define VERSION "3.0.1"
    | /* end confdefs.h.  */
    | #include <ac_nonexistent.h>
    configure:4824: checking for ANSI C header files
    configure:4854: gcc -c -g -O2  conftest.c >&5
    configure:4860: $? = 0
    configure:4959: gcc -o conftest -g -O2   conftest.c  >&5
    configure:4962: $? = 0
    configure:4968: ./conftest
    configure:4971: $? = 0
    configure:4988: result: yes
    configure:5012: checking for sys/types.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for sys/stat.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for stdlib.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for string.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for memory.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for strings.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for inttypes.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for stdint.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for unistd.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5082: checking dlfcn.h usability
    configure:5099: gcc -c -g -O2  conftest.c >&5
    configure:5105: $? = 0
    configure:5119: result: yes
    configure:5123: checking dlfcn.h presence
    configure:5138: gcc -E  conftest.c
    configure:5144: $? = 0
    configure:5158: result: yes
    configure:5186: checking for dlfcn.h
    configure:5194: result: yes
    configure:5265: checking for g++
    configure:5281: found /usr/bin/g++
    configure:5292: result: g++
    configure:5323: checking for C++ compiler version
    configure:5330: g++ --version >&5
    g++ (GCC) 4.2.0
    Copyright (C) 2007 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     
    configure:5333: $? = 0
    configure:5340: g++ -v >&5
    Using built-in specs.
    Target: powerpc-ibm-aix5.3.0.0
    Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --enable-languages=c,c++,java --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0 --target=powerpc-ibm-aix5.3.0.0 --build=powerpc-ibm-aix5.3.0.0 --disable-libjava-multilib
    Thread model: aix
    gcc version 4.2.0
    configure:5343: $? = 0
    configure:5350: g++ -V >&5
    g++: '-V' option must have argument
    configure:5353: $? = 1
    configure:5356: checking whether we are using the GNU C++ compiler
    configure:5385: g++ -c   conftest.cpp >&5
    configure:5391: $? = 0
    configure:5408: result: yes
    configure:5413: checking whether g++ accepts -g
    configure:5443: g++ -c -g  conftest.cpp >&5
    configure:5449: $? = 0
    configure:5548: result: yes
    configure:5573: checking dependency style of g++
    configure:5664: result: gcc3
    configure:5689: checking how to run the C++ preprocessor
    configure:5725: g++ -E  conftest.cpp
    configure:5731: $? = 0
    configure:5762: g++ -E  conftest.cpp
    conftest.cpp:21:28: error: ac_nonexistent.h: No such file or directory
    configure:5768: $? = 1
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE "ocilib"
    | #define VERSION "3.0.1"
    | #define STDC_HEADERS 1
    | #define HAVE_SYS_TYPES_H 1
    | #define HAVE_SYS_STAT_H 1
    | #define HAVE_STDLIB_H 1
    | #define HAVE_STRING_H 1
    | #define HAVE_MEMORY_H 1
    | #define HAVE_STRINGS_H 1
    | #define HAVE_INTTYPES_H 1
    | #define HAVE_STDINT_H 1
    | #define HAVE_UNISTD_H 1
    | #define HAVE_DLFCN_H 1
    | /* end confdefs.h.  */
    | #include <ac_nonexistent.h>
    configure:5801: result: g++ -E
    configure:5830: g++ -E  conftest.cpp
    configure:5836: $? = 0
    configure:5867: g++ -E  conftest.cpp
    conftest.cpp:21:28: error: ac_nonexistent.h: No such file or directory
    configure:5873: $? = 1
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE "ocilib"
    | #define VERSION "3.0.1"
    | #define STDC_HEADERS 1
    | #define HAVE_SYS_TYPES_H 1
    | #define HAVE_SYS_STAT_H 1
    | #define HAVE_STDLIB_H 1
    | #define HAVE_STRING_H 1
    | #define HAVE_MEMORY_H 1
    | #define HAVE_STRINGS_H 1
    | #define HAVE_INTTYPES_H 1
    | #define HAVE_STDINT_H 1
    | #define HAVE_UNISTD_H 1
    | #define HAVE_DLFCN_H 1
    | /* end confdefs.h.  */
    | #include <ac_nonexistent.h>
    configure:5966: checking for g77
    configure:5996: result: no
    configure:5966: checking for xlf
    configure:5996: result: no
    configure:5966: checking for f77
    configure:5996: result: no
    configure:5966: checking for frt
    configure:5996: result: no
    configure:5966: checking for pgf77
    configure:5996: result: no
    configure:5966: checking for cf77
    configure:5996: result: no
    configure:5966: checking for fort77
    configure:5996: result: no
    configure:5966: checking for fl32
    configure:5996: result: no
    configure:5966: checking for af77
    configure:5996: result: no
    configure:5966: checking for xlf90
    configure:5996: result: no
    configure:5966: checking for f90
    configure:5996: result: no
    configure:5966: checking for pgf90
    configure:5996: result: no
    configure:5966: checking for pghpf
    configure:5996: result: no
    configure:5966: checking for epcf90
    configure:5996: result: no
    configure:5966: checking for gfortran
    configure:5996: result: no
    configure:5966: checking for g95
    configure:5996: result: no
    configure:5966: checking for xlf95
    configure:5996: result: no
    configure:5966: checking for f95
    configure:5996: result: no
    configure:5966: checking for fort
    configure:5996: result: no
    configure:5966: checking for ifort
    configure:5996: result: no
    configure:5966: checking for ifc
    configure:5996: result: no
    configure:5966: checking for efc
    configure:5996: result: no
    configure:5966: checking for pgf95
    configure:5996: result: no
    configure:5966: checking for lf95
    configure:5996: result: no
    configure:5966: checking for ftn
    configure:5996: result: no
    configure:6023: checking for Fortran 77 compiler version
    configure:6030:  --version >&5
    ./configure[6031]: --version:  not found
    configure:6033: $? = 127
    configure:6040:  -v >&5
    ./configure[6041]: -v:  not found
    configure:6043: $? = 127
    configure:6050:  -V >&5
    ./configure[6051]: -V:  not found
    configure:6053: $? = 127
    configure:6061: checking whether we are using the GNU Fortran 77 compiler
    configure:6080:  -c  conftest.F >&5
    ./configure[6081]: -c:  not found
    configure:6086: $? = 127
    configure: failed program was:
    |       program main
    | #ifndef __GNUC__
    |        choke me
    | #endif
    | 
    |       end
    configure:6103: result: no
    configure:6109: checking whether  accepts -g
    configure:6126:  -c -g conftest.f >&5
    ./configure[6127]: -c:  not found
    configure:6132: $? = 127
    configure: failed program was:
    |       program main
    | 
    |       end
    configure:6148: result: no
    configure:6178: checking the maximum length of command line arguments
    configure:6290: result: 393216
    configure:6302: checking command to parse /usr/bin/nm -B output from gcc object
    configure:6407: gcc -c -g -O2  conftest.c >&5
    configure:6410: $? = 0
    configure:6414: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ 	]\([BCDT][BCDT]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
    configure:6417: $? = 0
    configure:6469: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
    configure:6472: $? = 0
    configure:6510: result: ok
    configure:6514: checking for objdir
    configure:6529: result: .libs
    configure:6621: checking for ar
    configure:6637: found /usr/bin/ar
    configure:6648: result: ar
    configure:6717: checking for ranlib
    configure:6733: found /usr/bin/ranlib
    configure:6744: result: ranlib
    configure:6813: checking for strip
    configure:6829: found /usr/bin/strip
    configure:6840: result: strip
    configure:7130: checking if gcc supports -fno-rtti -fno-exceptions
    configure:7148: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
    cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
    configure:7152: $? = 0
    configure:7165: result: no
    configure:7180: checking for gcc option to produce PIC
    configure:7412: result: 
    configure:7483: checking if gcc static flag -static works
    configure:7511: result: no
    configure:7521: checking if gcc supports -c -o file.o
    configure:7542: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
    configure:7546: $? = 0
    configure:7568: result: yes
    configure:7594: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
    configure:8090: gcc -o conftest -g -O2   conftest.c  >&5
    configure:8096: $? = 0
    configure:8574: result: yes
    configure:8641: checking dynamic linker characteristics
    configure:9243: result: aix5.3.0.0 ld.so
    configure:9252: checking how to hardcode library paths into programs
    configure:9277: result: immediate
    configure:9291: checking whether stripping libraries is possible
    configure:9313: result: no
    configure:10098: checking if libtool supports shared libraries
    configure:10100: result: yes
    configure:10103: checking whether to build shared libraries
    configure:10124: result: yes
    configure:10127: checking whether to build static libraries
    configure:10131: result: no
    configure:10224: creating libtool
    configure:10812: checking for ld used by g++
    configure:10879: result: /usr/bin/ld
    configure:10888: checking if the linker (/usr/bin/ld) is GNU ld
    configure:10903: result: no
    configure:10954: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
    configure:11139: g++ -o conftest -g -O2   conftest.cpp  >&5
    configure:11145: $? = 0
    configure:11928: result: yes
    configure:11950: g++ -c -g -O2  conftest.cpp >&5
    configure:11953: $? = 0
    configure:12105: checking for g++ option to produce PIC
    configure:12389: result: 
    configure:12460: checking if g++ static flag -static works
    configure:12488: result: no
    configure:12498: checking if g++ supports -c -o file.o
    configure:12519: g++ -c -g -O2  -o out/conftest2.o conftest.cpp >&5
    configure:12523: $? = 0
    configure:12545: result: yes
    configure:12571: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
    configure:12596: result: yes
    configure:12663: checking dynamic linker characteristics
    configure:13213: result: aix5.3.0.0 ld.so
    configure:13222: checking how to hardcode library paths into programs
    configure:13247: result: immediate
    configure:19465: checking for ranlib
    configure:19492: result: ranlib
    configure:19527: checking for OCILIB install path
    configure:19530: result: /home/KAIZHA01
    configure:19545: checking for OCILIB version
    configure:19555: result: v3.0.1 
    configure:19564: checking for OCILIB options
    configure:19619: result: import: linkage, charset = ansi 
    configure:19683: checking for Oracle home
    configure:19689: result: defined by environment : /appli/oracle/product/10.2.0
    configure:19722: checking for Oracle OCI headers location
    configure:19727: result: /appli/oracle/product/10.2.0/rdbms/public
    configure:19740: checking for Oracle OCI shared lib location
    configure:19744: result: /appli/oracle/product/10.2.0/lib
    configure:19752: checking for Oracle OCI shared lib name
    configure:19756: result: libclntsh.so
    configure:19764: checking for OCI shared lib existence
    configure:19780: result: yes
    configure:19949: creating ./config.status
     
    ## ---------------------- ##
    ## Running config.status. ##
    ## ---------------------- ##
     
    This file was extended by config.status, which was
    generated by GNU Autoconf 2.61.  Invocation command line was
     
      CONFIG_FILES    = 
      CONFIG_HEADERS  = 
      CONFIG_LINKS    = 
      CONFIG_COMMANDS = 
      $ ./config.status 
     
    on bmc2
     
    config.status:681: creating README
    config.status:681: creating Makefile
    config.status:681: creating src/Makefile
    config.status:681: creating doc/html/Makefile
    config.status:681: creating demo/Makefile
    config.status:681: creating demo/Makefile_demo
    config.status:681: creating config.h
    config.status:954: executing depfiles commands
     
    ## ---------------- ##
    ## Cache variables. ##
    ## ---------------- ##
     
    ac_cv_build=powerpc-ibm-aix5.3.0.0
    ac_cv_c_compiler_gnu=yes
    ac_cv_cxx_compiler_gnu=yes
    ac_cv_env_CCC_set=''
    ac_cv_env_CCC_value=''
    ac_cv_env_CC_set=''
    ac_cv_env_CC_value=''
    ac_cv_env_CFLAGS_set=''
    ac_cv_env_CFLAGS_value=''
    ac_cv_env_CPPFLAGS_set=''
    ac_cv_env_CPPFLAGS_value=''
    ac_cv_env_CPP_set=''
    ac_cv_env_CPP_value=''
    ac_cv_env_CXXCPP_set=''
    ac_cv_env_CXXCPP_value=''
    ac_cv_env_CXXFLAGS_set=''
    ac_cv_env_CXXFLAGS_value=''
    ac_cv_env_CXX_set=''
    ac_cv_env_CXX_value=''
    ac_cv_env_F77_set=''
    ac_cv_env_F77_value=''
    ac_cv_env_FFLAGS_set=''
    ac_cv_env_FFLAGS_value=''
    ac_cv_env_LDFLAGS_set=''
    ac_cv_env_LDFLAGS_value=''
    ac_cv_env_LIBS_set=''
    ac_cv_env_LIBS_value=''
    ac_cv_env_build_alias_set=''
    ac_cv_env_build_alias_value=''
    ac_cv_env_host_alias_set=''
    ac_cv_env_host_alias_value=''
    ac_cv_env_target_alias_set=''
    ac_cv_env_target_alias_value=''
    ac_cv_f77_compiler_gnu=no
    ac_cv_header_dlfcn_h=yes
    ac_cv_header_inttypes_h=yes
    ac_cv_header_memory_h=yes
    ac_cv_header_stdc=yes
    ac_cv_header_stdint_h=yes
    ac_cv_header_stdlib_h=yes
    ac_cv_header_string_h=yes
    ac_cv_header_strings_h=yes
    ac_cv_header_sys_stat_h=yes
    ac_cv_header_sys_types_h=yes
    ac_cv_header_unistd_h=yes
    ac_cv_host=powerpc-ibm-aix5.3.0.0
    ac_cv_objext=o
    ac_cv_path_EGREP='/usr/bin/grep -E'
    ac_cv_path_GREP=/usr/bin/grep
    ac_cv_prog_AWK=nawk
    ac_cv_prog_CPP='gcc -E'
    ac_cv_prog_CXXCPP='g++ -E'
    ac_cv_prog_ac_ct_AR=ar
    ac_cv_prog_ac_ct_CC=gcc
    ac_cv_prog_ac_ct_CXX=g++
    ac_cv_prog_ac_ct_RANLIB=ranlib
    ac_cv_prog_ac_ct_STRIP=strip
    ac_cv_prog_cc_c89=''
    ac_cv_prog_cc_g=yes
    ac_cv_prog_cxx_g=yes
    ac_cv_prog_f77_g=no
    ac_cv_prog_make_make_set=yes
    am_cv_CC_dependencies_compiler_type=gcc3
    am_cv_CXX_dependencies_compiler_type=gcc3
    lt_cv_deplibs_check_method=pass_all
    lt_cv_file_magic_cmd='$MAGIC_CMD'
    lt_cv_file_magic_test_file=''
    lt_cv_ld_reload_flag=-r
    lt_cv_objdir=.libs
    lt_cv_path_LD=/usr/bin/ld
    lt_cv_path_LDCXX=/usr/bin/ld
    lt_cv_path_NM='/usr/bin/nm -B'
    lt_cv_path_SED=/usr/bin/sed
    lt_cv_prog_compiler_c_o=yes
    lt_cv_prog_compiler_c_o_CXX=yes
    lt_cv_prog_compiler_rtti_exceptions=no
    lt_cv_prog_gnu_ld=no
    lt_cv_prog_gnu_ldcxx=no
    lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ 	]\([BCDT][BCDT]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'
    lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/  {"\2", (lt_ptr) \&\2},/p'\'
    lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'
    lt_cv_sys_max_cmd_len=393216
    lt_lt_cv_prog_compiler_c_o='"yes"'
    lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
    lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ 	]\\([BCDT][BCDT]*\\)[ 	][ 	]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
    lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
    lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
     
    ## ----------------- ##
    ## Output variables. ##
    ## ----------------- ##
     
    ACLOCAL='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run aclocal-1.10'
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run tar'
    AR='ar'
    AUTOCONF='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run autoconf'
    AUTOHEADER='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run autoheader'
    AUTOMAKE='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run automake-1.10'
    AWK='nawk'
    CC='gcc'
    CCDEPMODE='depmode=gcc3'
    CFLAGS='-g -O2'
    CPP='gcc -E'
    CPPFLAGS=''
    CXX='g++'
    CXXCPP='g++ -E'
    CXXDEPMODE='depmode=gcc3'
    CXXFLAGS='-g -O2'
    CYGPATH_W='echo'
    DEFS='-DHAVE_CONFIG_H'
    DEPDIR='.deps'
    ECHO='print -r'
    ECHO_C='ECHO_N=''
    ECHO_T=''
    EGREP='/usr/bin/grep -E'
    EXEEXT=''
    F77=''
    FFLAGS=''
    GREP='/usr/bin/grep'
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    LDFLAGS=''
    LIBOBJS=''
    LIBS=''
    LIBTOOL='$(SHELL) $(top_builddir)/libtool'
    LN_S='ln -s'
    LTLIBOBJS=''
    LT_AGE='0'
    LT_CURRENT='3'
    LT_RELEASE=''
    LT_REVISION='1'
    MAKEINFO='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run makeinfo'
    OBJEXT='o'
    OCILIB_CHARSET='OCILIB_CHARSET_ANSI'
    OCILIB_DEMO_SOURCES='abort.c array.c bind.c coll.c conn.c cursor.c date.c desc.c err.c err_ctx.c exec.c fetch.c file.c format.c hash.c init.c lob.c long.c meta.c object.c ocilib_demo.c ocilib_demo.h output.c plsql_block.c plsql_table.c pool.c returning.c rowid.c scroll.c thread.c timestamp.c '
    OCILIB_DOCS='annotated.html callback_8c-source.html collection_8c-source.html column_8c-source.html connection_8c-source.html connpool_8c-source.html date_8c-source.html define_8c-source.html doxygen.css doxygen.png element_8c-source.html error_8c-source.html exception_8c-source.html file_8c-source.html files.html format_8c-source.html group__g__abort.html group__g__bind.html group__g__charset.html group__g__collection.html group__g__connect.html group__g__connpool.html group__g__date.html group__g__demo.html group__g__desc.html group__g__error.html group__g__exec.html group__g__fetch.html group__g__file.html group__g__format.html group__g__handles.html group__g__hash.html group__g__init.html group__g__install.html group__g__lob.html group__g__long.html group__g__objects.html group__g__ora__ret.html group__g__plsql.html group__g__rowid.html group__g__stmt.html group__g__threads.html group__g__timestamp.html group__g__transac.html group__g__usertypes.html handle_8c-source.html hash_8c-source.html index.html interval_8c-source.html iterator_8c-source.html library_8c-source.html list_8c-source.html lob_8c-source.html logo-160x120.png long_8c-source.html memory_8c-source.html modules.html mutex_8c-source.html number_8c-source.html object_8c-source.html oci__api_8h-source.html oci__defs_8h-source.html oci__import_8h-source.html oci__loader_8h-source.html oci__types_8h-source.html ocilib_8h-source.html ocilib__checks_8h-source.html ocilib__defs_8h-source.html ocilib__internal_8h-source.html ocilib__types_8h-source.html resultset_8c-source.html schema_8c-source.html statement_8c-source.html string_8c-source.html struct_o_c_i___coll.html struct_o_c_i___column.html struct_o_c_i___conn_pool.html struct_o_c_i___connection.html struct_o_c_i___date.html struct_o_c_i___elem.html struct_o_c_i___error.html struct_o_c_i___file.html struct_o_c_i___hash_entry.html struct_o_c_i___hash_table.html struct_o_c_i___hash_value.html struct_o_c_i___interval.html struct_o_c_i___iter.html struct_o_c_i___lob.html struct_o_c_i___long.html struct_o_c_i___mutex.html struct_o_c_i___object.html struct_o_c_i___resultset.html struct_o_c_i___schema.html struct_o_c_i___statement.html struct_o_c_i___thread.html struct_o_c_i___timestamp.html struct_o_c_i___transaction.html struct_o_c_i___x_i_d.html tabs.css thread_8c-source.html threadkey_8c-source.html timestamp_8c-source.html transaction_8c-source.html union_o_c_i___variant.html '
    OCILIB_IMPORT='OCI_IMPORT_LINKAGE'
    OCILIB_LD_FLAG=''
    OCILIB_PREFIX='/home/KAIZHA01'
    ORACLE_HOME='/appli/oracle/product/10.2.0'
    ORACLE_INCLUDES='-I/appli/oracle/product/10.2.0/rdbms/public'
    ORACLE_LIBADD='-L/appli/oracle/product/10.2.0/lib -lclntsh'
    ORACLE_LIBNAME=''
    PACKAGE='ocilib'
    PACKAGE_BUGREPORT=''
    PACKAGE_NAME=''
    PACKAGE_STRING=''
    PACKAGE_TARNAME=''
    PACKAGE_VERSION=''
    PATH_SEPARATOR=':'
    RANLIB='ranlib'
    SED='/usr/bin/sed'
    SET_MAKE=''
    SHELL='/bin/sh'
    STRIP='strip'
    VERSION='3.0.1'
    ac_ct_CC='gcc'
    ac_ct_CXX='g++'
    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='${exec_prefix}/bin'
    build='powerpc-ibm-aix5.3.0.0'
    build_alias=''
    build_cpu='powerpc'
    build_os='aix5.3.0.0'
    build_vendor='ibm'
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE}'
    dvidir='${docdir}'
    exec_prefix='/home/KAIZHA01'
    host='powerpc-ibm-aix5.3.0.0'
    host_alias=''
    host_cpu='powerpc'
    host_os='aix5.3.0.0'
    host_vendor='ibm'
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='$(SHELL) /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/install-sh'
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    mkdir_p='$(top_builddir)/config/install-sh -c -d'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/home/KAIZHA01'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target_alias=''
     
    ## ----------- ##
    ## confdefs.h. ##
    ## ----------- ##
     
    #define PACKAGE_NAME ""
    #define PACKAGE_TARNAME ""
    #define PACKAGE_VERSION ""
    #define PACKAGE_STRING ""
    #define PACKAGE_BUGREPORT ""
    #define PACKAGE "ocilib"
    #define VERSION "3.0.1"
    #define STDC_HEADERS 1
    #define HAVE_SYS_TYPES_H 1
    #define HAVE_SYS_STAT_H 1
    #define HAVE_STDLIB_H 1
    #define HAVE_STRING_H 1
    #define HAVE_MEMORY_H 1
    #define HAVE_STRINGS_H 1
    #define HAVE_INTTYPES_H 1
    #define HAVE_STDINT_H 1
    #define HAVE_UNISTD_H 1
    #define HAVE_DLFCN_H 1
     
    configure: exit 0
    Voici le contenu des variables $ORACLE_HOME et $LD_LIBRARY_PATH :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    ORACLE_HOME=/appli/oracle/product/10.2.0
    LD_LIBRARY_PATH=/appli/oracle/product/10.2.0/lib:/usr/local/lib:$HOME/lib
    La machine en question est une machine 32bits, dans le répertoire $ORACLE_HOME, j'ai lib et lib32.

  8. #8
    Rédacteur
    Avatar de Vincent Rogier
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    2 373
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 2 373
    Par défaut
    essaie de refaire un configure en ajoutant :

    --with-oracle-lib-path=$ORACLE_HOME/lib32
    puis désinstalle et réinstalle.

    et pour ton prog :

    g++ -I$HOME/include -DOCI_IMPORT_LINKAGE -DOCILIB_CHARSET_ANSI -L$ORACLE_HOME/lib32 -lclntsh -L$HOME/lib -locilib -g test.cpp -o main
    ca donne quoi ?

    dans tous les cas poste le contenu du nouveau log du configure, stp
    Vincent Rogier.

    Rubrique ORACLE : Accueil - Forum - Tutoriels - FAQ - Livres - Blog

    Vous voulez contribuer à la rubrique Oracle ? Contactez la rubrique !

    OCILIB (C Driver for Oracle)

    Librairie C Open Source multi-plateformes pour accéder et manipuler des bases de données Oracle

  9. #9
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    44
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 44
    Par défaut
    voici le nouveau fichier config log :

    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
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
     
    This file contains any messages produced by compilers while
    running configure, to aid debugging if configure makes a mistake.
     
    It was created by configure, which was
    generated by GNU Autoconf 2.61.  Invocation command line was
     
      $ ./configure --prefix=$HOME --exec-prefix=$HOME --with-template=aix_gcc --with-oracle-lib-path=/appli/oracle/product/10.2.0/lib32
     
    ## --------- ##
    ## Platform. ##
    ## --------- ##
     
    hostname = bmc2
    uname -m = 00CCBEDF4C00
    uname -r = 3
    uname -s = AIX
    uname -v = 5
     
    /usr/bin/uname -p = powerpc
    /bin/uname -X     = unknown
     
    /bin/arch              = unknown
    /usr/bin/arch -k       = unknown
    /usr/convex/getsysinfo = unknown
    /usr/bin/hostinfo      = unknown
    /bin/machine           = unknown
    /usr/bin/oslevel       = 5.3.0.0
    /bin/universe          = unknown
     
    PATH: /usr/bin
    PATH: /etc
    PATH: /usr/sbin
    PATH: /usr/ucb
    PATH: $HOME/bin
    PATH: /usr/bin/X11
    PATH: /sbin
    PATH: .
     
     
    ## ----------- ##
    ## Core tests. ##
    ## ----------- ##
     
    configure:1990: checking for a BSD-compatible install
    configure:2046: result: config/install-sh -c
    configure:2057: checking whether build environment is sane
    configure:2100: result: yes
    configure:2128: checking for a thread-safe mkdir -p
    configure:2167: result: config/install-sh -c -d
    configure:2180: checking for gawk
    configure:2210: result: no
    configure:2180: checking for mawk
    configure:2210: result: no
    configure:2180: checking for nawk
    configure:2196: found /usr/bin/nawk
    configure:2207: result: nawk
    configure:2218: checking whether make sets $(MAKE)
    configure:2239: result: yes
    configure:2478: checking for gcc
    configure:2494: found /usr/bin/gcc
    configure:2505: result: gcc
    configure:2743: checking for C compiler version
    configure:2750: gcc --version >&5
    gcc (GCC) 4.2.0
    Copyright (C) 2007 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     
    configure:2753: $? = 0
    configure:2760: gcc -v >&5
    Using built-in specs.
    Target: powerpc-ibm-aix5.3.0.0
    Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --enable-languages=c,c++,java --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0 --target=powerpc-ibm-aix5.3.0.0 --build=powerpc-ibm-aix5.3.0.0 --disable-libjava-multilib
    Thread model: aix
    gcc version 4.2.0
    configure:2763: $? = 0
    configure:2770: gcc -V >&5
    gcc: '-V' option must have argument
    configure:2773: $? = 1
    configure:2796: checking for C compiler default output file name
    configure:2823: gcc    conftest.c  >&5
    configure:2826: $? = 0
    configure:2864: result: a.out
    configure:2881: checking whether the C compiler works
    configure:2891: ./a.out
    configure:2894: $? = 0
    configure:2911: result: yes
    configure:2918: checking whether we are cross compiling
    configure:2920: result: no
    configure:2923: checking for suffix of executables
    configure:2930: gcc -o conftest    conftest.c  >&5
    configure:2933: $? = 0
    configure:2957: result: 
    configure:2963: checking for suffix of object files
    configure:2989: gcc -c   conftest.c >&5
    configure:2992: $? = 0
    configure:3015: result: o
    configure:3019: checking whether we are using the GNU C compiler
    configure:3048: gcc -c   conftest.c >&5
    configure:3054: $? = 0
    configure:3071: result: yes
    configure:3076: checking whether gcc accepts -g
    configure:3106: gcc -c -g  conftest.c >&5
    configure:3112: $? = 0
    configure:3211: result: yes
    configure:3228: checking for gcc option to accept ISO C89
    configure:3302: gcc  -c -g -O2  conftest.c >&5
    configure:3308: $? = 0
    configure:3331: result: none needed
    configure:3360: checking for style of include used by make
    configure:3388: result: GNU
    configure:3413: checking dependency style of gcc
    configure:3504: result: gcc3
    configure:3532: checking for a BSD-compatible install
    configure:3588: result: config/install-sh -c
    configure:3677: checking build system type
    configure:3695: result: powerpc-ibm-aix5.3.0.0
    configure:3717: checking host system type
    configure:3732: result: powerpc-ibm-aix5.3.0.0
    configure:3754: checking for a sed that does not truncate output
    configure:3810: result: /usr/bin/sed
    configure:3813: checking for grep that handles long lines and -e
    configure:3887: result: /usr/bin/grep
    configure:3892: checking for egrep
    configure:3970: result: /usr/bin/grep -E
    configure:3986: checking for ld used by gcc
    configure:4053: result: /usr/bin/ld
    configure:4062: checking if the linker (/usr/bin/ld) is GNU ld
    configure:4077: result: no
    configure:4082: checking for /usr/bin/ld option to reload object files
    configure:4089: result: -r
    configure:4107: checking for BSD-compatible nm
    configure:4156: result: /usr/bin/nm -B
    configure:4160: checking whether ln -s works
    configure:4164: result: yes
    configure:4171: checking how to recognize dependent libraries
    configure:4357: result: pass_all
    configure:4598: checking how to run the C preprocessor
    configure:4638: gcc -E  conftest.c
    configure:4644: $? = 0
    configure:4675: gcc -E  conftest.c
    conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
    configure:4681: $? = 1
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE "ocilib"
    | #define VERSION "3.0.1"
    | /* end confdefs.h.  */
    | #include <ac_nonexistent.h>
    configure:4714: result: gcc -E
    configure:4743: gcc -E  conftest.c
    configure:4749: $? = 0
    configure:4780: gcc -E  conftest.c
    conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
    configure:4786: $? = 1
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE "ocilib"
    | #define VERSION "3.0.1"
    | /* end confdefs.h.  */
    | #include <ac_nonexistent.h>
    configure:4824: checking for ANSI C header files
    configure:4854: gcc -c -g -O2  conftest.c >&5
    configure:4860: $? = 0
    configure:4959: gcc -o conftest -g -O2   conftest.c  >&5
    configure:4962: $? = 0
    configure:4968: ./conftest
    configure:4971: $? = 0
    configure:4988: result: yes
    configure:5012: checking for sys/types.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for sys/stat.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for stdlib.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for string.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for memory.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for strings.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for inttypes.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for stdint.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5012: checking for unistd.h
    configure:5033: gcc -c -g -O2  conftest.c >&5
    configure:5039: $? = 0
    configure:5055: result: yes
    configure:5082: checking dlfcn.h usability
    configure:5099: gcc -c -g -O2  conftest.c >&5
    configure:5105: $? = 0
    configure:5119: result: yes
    configure:5123: checking dlfcn.h presence
    configure:5138: gcc -E  conftest.c
    configure:5144: $? = 0
    configure:5158: result: yes
    configure:5186: checking for dlfcn.h
    configure:5194: result: yes
    configure:5265: checking for g++
    configure:5281: found /usr/bin/g++
    configure:5292: result: g++
    configure:5323: checking for C++ compiler version
    configure:5330: g++ --version >&5
    g++ (GCC) 4.2.0
    Copyright (C) 2007 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
     
    configure:5333: $? = 0
    configure:5340: g++ -v >&5
    Using built-in specs.
    Target: powerpc-ibm-aix5.3.0.0
    Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --enable-languages=c,c++,java --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0 --target=powerpc-ibm-aix5.3.0.0 --build=powerpc-ibm-aix5.3.0.0 --disable-libjava-multilib
    Thread model: aix
    gcc version 4.2.0
    configure:5343: $? = 0
    configure:5350: g++ -V >&5
    g++: '-V' option must have argument
    configure:5353: $? = 1
    configure:5356: checking whether we are using the GNU C++ compiler
    configure:5385: g++ -c   conftest.cpp >&5
    configure:5391: $? = 0
    configure:5408: result: yes
    configure:5413: checking whether g++ accepts -g
    configure:5443: g++ -c -g  conftest.cpp >&5
    configure:5449: $? = 0
    configure:5548: result: yes
    configure:5573: checking dependency style of g++
    configure:5664: result: gcc3
    configure:5689: checking how to run the C++ preprocessor
    configure:5725: g++ -E  conftest.cpp
    configure:5731: $? = 0
    configure:5762: g++ -E  conftest.cpp
    conftest.cpp:21:28: error: ac_nonexistent.h: No such file or directory
    configure:5768: $? = 1
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE "ocilib"
    | #define VERSION "3.0.1"
    | #define STDC_HEADERS 1
    | #define HAVE_SYS_TYPES_H 1
    | #define HAVE_SYS_STAT_H 1
    | #define HAVE_STDLIB_H 1
    | #define HAVE_STRING_H 1
    | #define HAVE_MEMORY_H 1
    | #define HAVE_STRINGS_H 1
    | #define HAVE_INTTYPES_H 1
    | #define HAVE_STDINT_H 1
    | #define HAVE_UNISTD_H 1
    | #define HAVE_DLFCN_H 1
    | /* end confdefs.h.  */
    | #include <ac_nonexistent.h>
    configure:5801: result: g++ -E
    configure:5830: g++ -E  conftest.cpp
    configure:5836: $? = 0
    configure:5867: g++ -E  conftest.cpp
    conftest.cpp:21:28: error: ac_nonexistent.h: No such file or directory
    configure:5873: $? = 1
    configure: failed program was:
    | /* confdefs.h.  */
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | #define PACKAGE "ocilib"
    | #define VERSION "3.0.1"
    | #define STDC_HEADERS 1
    | #define HAVE_SYS_TYPES_H 1
    | #define HAVE_SYS_STAT_H 1
    | #define HAVE_STDLIB_H 1
    | #define HAVE_STRING_H 1
    | #define HAVE_MEMORY_H 1
    | #define HAVE_STRINGS_H 1
    | #define HAVE_INTTYPES_H 1
    | #define HAVE_STDINT_H 1
    | #define HAVE_UNISTD_H 1
    | #define HAVE_DLFCN_H 1
    | /* end confdefs.h.  */
    | #include <ac_nonexistent.h>
    configure:5966: checking for g77
    configure:5996: result: no
    configure:5966: checking for xlf
    configure:5996: result: no
    configure:5966: checking for f77
    configure:5996: result: no
    configure:5966: checking for frt
    configure:5996: result: no
    configure:5966: checking for pgf77
    configure:5996: result: no
    configure:5966: checking for cf77
    configure:5996: result: no
    configure:5966: checking for fort77
    configure:5996: result: no
    configure:5966: checking for fl32
    configure:5996: result: no
    configure:5966: checking for af77
    configure:5996: result: no
    configure:5966: checking for xlf90
    configure:5996: result: no
    configure:5966: checking for f90
    configure:5996: result: no
    configure:5966: checking for pgf90
    configure:5996: result: no
    configure:5966: checking for pghpf
    configure:5996: result: no
    configure:5966: checking for epcf90
    configure:5996: result: no
    configure:5966: checking for gfortran
    configure:5996: result: no
    configure:5966: checking for g95
    configure:5996: result: no
    configure:5966: checking for xlf95
    configure:5996: result: no
    configure:5966: checking for f95
    configure:5996: result: no
    configure:5966: checking for fort
    configure:5996: result: no
    configure:5966: checking for ifort
    configure:5996: result: no
    configure:5966: checking for ifc
    configure:5996: result: no
    configure:5966: checking for efc
    configure:5996: result: no
    configure:5966: checking for pgf95
    configure:5996: result: no
    configure:5966: checking for lf95
    configure:5996: result: no
    configure:5966: checking for ftn
    configure:5996: result: no
    configure:6023: checking for Fortran 77 compiler version
    configure:6030:  --version >&5
    ./configure[6031]: --version:  not found
    configure:6033: $? = 127
    configure:6040:  -v >&5
    ./configure[6041]: -v:  not found
    configure:6043: $? = 127
    configure:6050:  -V >&5
    ./configure[6051]: -V:  not found
    configure:6053: $? = 127
    configure:6061: checking whether we are using the GNU Fortran 77 compiler
    configure:6080:  -c  conftest.F >&5
    ./configure[6081]: -c:  not found
    configure:6086: $? = 127
    configure: failed program was:
    |       program main
    | #ifndef __GNUC__
    |        choke me
    | #endif
    | 
    |       end
    configure:6103: result: no
    configure:6109: checking whether  accepts -g
    configure:6126:  -c -g conftest.f >&5
    ./configure[6127]: -c:  not found
    configure:6132: $? = 127
    configure: failed program was:
    |       program main
    | 
    |       end
    configure:6148: result: no
    configure:6178: checking the maximum length of command line arguments
    configure:6290: result: 393216
    configure:6302: checking command to parse /usr/bin/nm -B output from gcc object
    configure:6407: gcc -c -g -O2  conftest.c >&5
    configure:6410: $? = 0
    configure:6414: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ 	]\([BCDT][BCDT]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
    configure:6417: $? = 0
    configure:6469: gcc -o conftest -g -O2   conftest.c conftstm.o >&5
    configure:6472: $? = 0
    configure:6510: result: ok
    configure:6514: checking for objdir
    configure:6529: result: .libs
    configure:6621: checking for ar
    configure:6637: found /usr/bin/ar
    configure:6648: result: ar
    configure:6717: checking for ranlib
    configure:6733: found /usr/bin/ranlib
    configure:6744: result: ranlib
    configure:6813: checking for strip
    configure:6829: found /usr/bin/strip
    configure:6840: result: strip
    configure:7130: checking if gcc supports -fno-rtti -fno-exceptions
    configure:7148: gcc -c -g -O2  -fno-rtti -fno-exceptions conftest.c >&5
    cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
    configure:7152: $? = 0
    configure:7165: result: no
    configure:7180: checking for gcc option to produce PIC
    configure:7412: result: 
    configure:7483: checking if gcc static flag -static works
    configure:7511: result: no
    configure:7521: checking if gcc supports -c -o file.o
    configure:7542: gcc -c -g -O2  -o out/conftest2.o conftest.c >&5
    configure:7546: $? = 0
    configure:7568: result: yes
    configure:7594: checking whether the gcc linker (/usr/bin/ld) supports shared libraries
    configure:8090: gcc -o conftest -g -O2   conftest.c  >&5
    configure:8096: $? = 0
    configure:8574: result: yes
    configure:8641: checking dynamic linker characteristics
    configure:9243: result: aix5.3.0.0 ld.so
    configure:9252: checking how to hardcode library paths into programs
    configure:9277: result: immediate
    configure:9291: checking whether stripping libraries is possible
    configure:9313: result: no
    configure:10098: checking if libtool supports shared libraries
    configure:10100: result: yes
    configure:10103: checking whether to build shared libraries
    configure:10124: result: yes
    configure:10127: checking whether to build static libraries
    configure:10131: result: no
    configure:10224: creating libtool
    configure:10812: checking for ld used by g++
    configure:10879: result: /usr/bin/ld
    configure:10888: checking if the linker (/usr/bin/ld) is GNU ld
    configure:10903: result: no
    configure:10954: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
    configure:11139: g++ -o conftest -g -O2   conftest.cpp  >&5
    configure:11145: $? = 0
    configure:11928: result: yes
    configure:11950: g++ -c -g -O2  conftest.cpp >&5
    configure:11953: $? = 0
    configure:12105: checking for g++ option to produce PIC
    configure:12389: result: 
    configure:12460: checking if g++ static flag -static works
    configure:12488: result: no
    configure:12498: checking if g++ supports -c -o file.o
    configure:12519: g++ -c -g -O2  -o out/conftest2.o conftest.cpp >&5
    configure:12523: $? = 0
    configure:12545: result: yes
    configure:12571: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
    configure:12596: result: yes
    configure:12663: checking dynamic linker characteristics
    configure:13213: result: aix5.3.0.0 ld.so
    configure:13222: checking how to hardcode library paths into programs
    configure:13247: result: immediate
    configure:19465: checking for ranlib
    configure:19492: result: ranlib
    configure:19527: checking for OCILIB install path
    configure:19530: result: /home/KAIZHA01
    configure:19545: checking for OCILIB version
    configure:19555: result: v3.0.1 
    configure:19564: checking for OCILIB options
    configure:19619: result: import: linkage, charset = ansi 
    configure:19683: checking for Oracle home
    configure:19689: result: defined by environment : /appli/oracle/product/10.2.0
    configure:19722: checking for Oracle OCI headers location
    configure:19727: result: /appli/oracle/product/10.2.0/rdbms/public
    configure:19740: checking for Oracle OCI shared lib location
    configure:19744: result: /appli/oracle/product/10.2.0/lib32
    configure:19752: checking for Oracle OCI shared lib name
    configure:19756: result: libclntsh.so
    configure:19764: checking for OCI shared lib existence
    configure:19780: result: yes
    configure:19949: creating ./config.status
     
    ## ---------------------- ##
    ## Running config.status. ##
    ## ---------------------- ##
     
    This file was extended by config.status, which was
    generated by GNU Autoconf 2.61.  Invocation command line was
     
      CONFIG_FILES    = 
      CONFIG_HEADERS  = 
      CONFIG_LINKS    = 
      CONFIG_COMMANDS = 
      $ ./config.status 
     
    on bmc2
     
    config.status:681: creating README
    config.status:681: creating Makefile
    config.status:681: creating src/Makefile
    config.status:681: creating doc/html/Makefile
    config.status:681: creating demo/Makefile
    config.status:681: creating demo/Makefile_demo
    config.status:681: creating config.h
    config.status:908: config.h is unchanged
    config.status:954: executing depfiles commands
     
    ## ---------------- ##
    ## Cache variables. ##
    ## ---------------- ##
     
    ac_cv_build=powerpc-ibm-aix5.3.0.0
    ac_cv_c_compiler_gnu=yes
    ac_cv_cxx_compiler_gnu=yes
    ac_cv_env_CCC_set=''
    ac_cv_env_CCC_value=''
    ac_cv_env_CC_set=''
    ac_cv_env_CC_value=''
    ac_cv_env_CFLAGS_set=''
    ac_cv_env_CFLAGS_value=''
    ac_cv_env_CPPFLAGS_set=''
    ac_cv_env_CPPFLAGS_value=''
    ac_cv_env_CPP_set=''
    ac_cv_env_CPP_value=''
    ac_cv_env_CXXCPP_set=''
    ac_cv_env_CXXCPP_value=''
    ac_cv_env_CXXFLAGS_set=''
    ac_cv_env_CXXFLAGS_value=''
    ac_cv_env_CXX_set=''
    ac_cv_env_CXX_value=''
    ac_cv_env_F77_set=''
    ac_cv_env_F77_value=''
    ac_cv_env_FFLAGS_set=''
    ac_cv_env_FFLAGS_value=''
    ac_cv_env_LDFLAGS_set=''
    ac_cv_env_LDFLAGS_value=''
    ac_cv_env_LIBS_set=''
    ac_cv_env_LIBS_value=''
    ac_cv_env_build_alias_set=''
    ac_cv_env_build_alias_value=''
    ac_cv_env_host_alias_set=''
    ac_cv_env_host_alias_value=''
    ac_cv_env_target_alias_set=''
    ac_cv_env_target_alias_value=''
    ac_cv_f77_compiler_gnu=no
    ac_cv_header_dlfcn_h=yes
    ac_cv_header_inttypes_h=yes
    ac_cv_header_memory_h=yes
    ac_cv_header_stdc=yes
    ac_cv_header_stdint_h=yes
    ac_cv_header_stdlib_h=yes
    ac_cv_header_string_h=yes
    ac_cv_header_strings_h=yes
    ac_cv_header_sys_stat_h=yes
    ac_cv_header_sys_types_h=yes
    ac_cv_header_unistd_h=yes
    ac_cv_host=powerpc-ibm-aix5.3.0.0
    ac_cv_objext=o
    ac_cv_path_EGREP='/usr/bin/grep -E'
    ac_cv_path_GREP=/usr/bin/grep
    ac_cv_prog_AWK=nawk
    ac_cv_prog_CPP='gcc -E'
    ac_cv_prog_CXXCPP='g++ -E'
    ac_cv_prog_ac_ct_AR=ar
    ac_cv_prog_ac_ct_CC=gcc
    ac_cv_prog_ac_ct_CXX=g++
    ac_cv_prog_ac_ct_RANLIB=ranlib
    ac_cv_prog_ac_ct_STRIP=strip
    ac_cv_prog_cc_c89=''
    ac_cv_prog_cc_g=yes
    ac_cv_prog_cxx_g=yes
    ac_cv_prog_f77_g=no
    ac_cv_prog_make_make_set=yes
    am_cv_CC_dependencies_compiler_type=gcc3
    am_cv_CXX_dependencies_compiler_type=gcc3
    lt_cv_deplibs_check_method=pass_all
    lt_cv_file_magic_cmd='$MAGIC_CMD'
    lt_cv_file_magic_test_file=''
    lt_cv_ld_reload_flag=-r
    lt_cv_objdir=.libs
    lt_cv_path_LD=/usr/bin/ld
    lt_cv_path_LDCXX=/usr/bin/ld
    lt_cv_path_NM='/usr/bin/nm -B'
    lt_cv_path_SED=/usr/bin/sed
    lt_cv_prog_compiler_c_o=yes
    lt_cv_prog_compiler_c_o_CXX=yes
    lt_cv_prog_compiler_rtti_exceptions=no
    lt_cv_prog_gnu_ld=no
    lt_cv_prog_gnu_ldcxx=no
    lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ 	]\([BCDT][BCDT]*\)[ 	][ 	]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'
    lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/  {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/  {"\2", (lt_ptr) \&\2},/p'\'
    lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'
    lt_cv_sys_max_cmd_len=393216
    lt_lt_cv_prog_compiler_c_o='"yes"'
    lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
    lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ 	]\\([BCDT][BCDT]*\\)[ 	][ 	]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
    lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/  {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/  {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
    lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
     
    ## ----------------- ##
    ## Output variables. ##
    ## ----------------- ##
     
    ACLOCAL='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run aclocal-1.10'
    AMDEPBACKSLASH='\'
    AMDEP_FALSE='#'
    AMDEP_TRUE=''
    AMTAR='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run tar'
    AR='ar'
    AUTOCONF='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run autoconf'
    AUTOHEADER='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run autoheader'
    AUTOMAKE='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run automake-1.10'
    AWK='nawk'
    CC='gcc'
    CCDEPMODE='depmode=gcc3'
    CFLAGS='-g -O2'
    CPP='gcc -E'
    CPPFLAGS=''
    CXX='g++'
    CXXCPP='g++ -E'
    CXXDEPMODE='depmode=gcc3'
    CXXFLAGS='-g -O2'
    CYGPATH_W='echo'
    DEFS='-DHAVE_CONFIG_H'
    DEPDIR='.deps'
    ECHO='print -r'
    ECHO_C='ECHO_N=''
    ECHO_T=''
    EGREP='/usr/bin/grep -E'
    EXEEXT=''
    F77=''
    FFLAGS=''
    GREP='/usr/bin/grep'
    INSTALL_DATA='${INSTALL} -m 644'
    INSTALL_PROGRAM='${INSTALL}'
    INSTALL_SCRIPT='${INSTALL}'
    INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
    LDFLAGS=''
    LIBOBJS=''
    LIBS=''
    LIBTOOL='$(SHELL) $(top_builddir)/libtool'
    LN_S='ln -s'
    LTLIBOBJS=''
    LT_AGE='0'
    LT_CURRENT='3'
    LT_RELEASE=''
    LT_REVISION='1'
    MAKEINFO='${SHELL} /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/missing --run makeinfo'
    OBJEXT='o'
    OCILIB_CHARSET='OCILIB_CHARSET_ANSI'
    OCILIB_DEMO_SOURCES='abort.c array.c bind.c coll.c conn.c cursor.c date.c desc.c err.c err_ctx.c exec.c fetch.c file.c format.c hash.c init.c lob.c long.c meta.c object.c ocilib_demo.c ocilib_demo.h output.c plsql_block.c plsql_table.c pool.c returning.c rowid.c scroll.c thread.c timestamp.c '
    OCILIB_DOCS='annotated.html callback_8c-source.html collection_8c-source.html column_8c-source.html connection_8c-source.html connpool_8c-source.html date_8c-source.html define_8c-source.html doxygen.css doxygen.png element_8c-source.html error_8c-source.html exception_8c-source.html file_8c-source.html files.html format_8c-source.html group__g__abort.html group__g__bind.html group__g__charset.html group__g__collection.html group__g__connect.html group__g__connpool.html group__g__date.html group__g__demo.html group__g__desc.html group__g__error.html group__g__exec.html group__g__fetch.html group__g__file.html group__g__format.html group__g__handles.html group__g__hash.html group__g__init.html group__g__install.html group__g__lob.html group__g__long.html group__g__objects.html group__g__ora__ret.html group__g__plsql.html group__g__rowid.html group__g__stmt.html group__g__threads.html group__g__timestamp.html group__g__transac.html group__g__usertypes.html handle_8c-source.html hash_8c-source.html index.html interval_8c-source.html iterator_8c-source.html library_8c-source.html list_8c-source.html lob_8c-source.html logo-160x120.png long_8c-source.html memory_8c-source.html modules.html mutex_8c-source.html number_8c-source.html object_8c-source.html oci__api_8h-source.html oci__defs_8h-source.html oci__import_8h-source.html oci__loader_8h-source.html oci__types_8h-source.html ocilib_8h-source.html ocilib__checks_8h-source.html ocilib__defs_8h-source.html ocilib__internal_8h-source.html ocilib__types_8h-source.html resultset_8c-source.html schema_8c-source.html statement_8c-source.html string_8c-source.html struct_o_c_i___coll.html struct_o_c_i___column.html struct_o_c_i___conn_pool.html struct_o_c_i___connection.html struct_o_c_i___date.html struct_o_c_i___elem.html struct_o_c_i___error.html struct_o_c_i___file.html struct_o_c_i___hash_entry.html struct_o_c_i___hash_table.html struct_o_c_i___hash_value.html struct_o_c_i___interval.html struct_o_c_i___iter.html struct_o_c_i___lob.html struct_o_c_i___long.html struct_o_c_i___mutex.html struct_o_c_i___object.html struct_o_c_i___resultset.html struct_o_c_i___schema.html struct_o_c_i___statement.html struct_o_c_i___thread.html struct_o_c_i___timestamp.html struct_o_c_i___transaction.html struct_o_c_i___x_i_d.html tabs.css thread_8c-source.html threadkey_8c-source.html timestamp_8c-source.html transaction_8c-source.html union_o_c_i___variant.html '
    OCILIB_IMPORT='OCI_IMPORT_LINKAGE'
    OCILIB_LD_FLAG=''
    OCILIB_PREFIX='/home/KAIZHA01'
    ORACLE_HOME='/appli/oracle/product/10.2.0'
    ORACLE_INCLUDES='-I/appli/oracle/product/10.2.0/rdbms/public'
    ORACLE_LIBADD='-L/appli/oracle/product/10.2.0/lib32 -lclntsh'
    ORACLE_LIBNAME=''
    PACKAGE='ocilib'
    PACKAGE_BUGREPORT=''
    PACKAGE_NAME=''
    PACKAGE_STRING=''
    PACKAGE_TARNAME=''
    PACKAGE_VERSION=''
    PATH_SEPARATOR=':'
    RANLIB='ranlib'
    SED='/usr/bin/sed'
    SET_MAKE=''
    SHELL='/bin/sh'
    STRIP='strip'
    VERSION='3.0.1'
    ac_ct_CC='gcc'
    ac_ct_CXX='g++'
    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='${exec_prefix}/bin'
    build='powerpc-ibm-aix5.3.0.0'
    build_alias=''
    build_cpu='powerpc'
    build_os='aix5.3.0.0'
    build_vendor='ibm'
    datadir='${datarootdir}'
    datarootdir='${prefix}/share'
    docdir='${datarootdir}/doc/${PACKAGE}'
    dvidir='${docdir}'
    exec_prefix='/home/KAIZHA01'
    host='powerpc-ibm-aix5.3.0.0'
    host_alias=''
    host_cpu='powerpc'
    host_os='aix5.3.0.0'
    host_vendor='ibm'
    htmldir='${docdir}'
    includedir='${prefix}/include'
    infodir='${datarootdir}/info'
    install_sh='$(SHELL) /cassiopae_data/Interfaces/99_Misc/OCILIB/ocilib-3.0.1/config/install-sh'
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localedir='${datarootdir}/locale'
    localstatedir='${prefix}/var'
    mandir='${datarootdir}/man'
    mkdir_p='$(top_builddir)/config/install-sh -c -d'
    oldincludedir='/usr/include'
    pdfdir='${docdir}'
    prefix='/home/KAIZHA01'
    program_transform_name='s,x,x,'
    psdir='${docdir}'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target_alias=''
     
    ## ----------- ##
    ## confdefs.h. ##
    ## ----------- ##
     
    #define PACKAGE_NAME ""
    #define PACKAGE_TARNAME ""
    #define PACKAGE_VERSION ""
    #define PACKAGE_STRING ""
    #define PACKAGE_BUGREPORT ""
    #define PACKAGE "ocilib"
    #define VERSION "3.0.1"
    #define STDC_HEADERS 1
    #define HAVE_SYS_TYPES_H 1
    #define HAVE_SYS_STAT_H 1
    #define HAVE_STDLIB_H 1
    #define HAVE_STRING_H 1
    #define HAVE_MEMORY_H 1
    #define HAVE_STRINGS_H 1
    #define HAVE_INTTYPES_H 1
    #define HAVE_STDINT_H 1
    #define HAVE_UNISTD_H 1
    #define HAVE_DLFCN_H 1
     
    configure: exit 0

  10. #10
    Rédacteur
    Avatar de Vincent Rogier
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    2 373
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 2 373
    Par défaut
    ok, le configure a bien pris en compte /lib32..

    Ca donne quoi la réinstall et la recompilation de ton prog et son exécution ?
    Vincent Rogier.

    Rubrique ORACLE : Accueil - Forum - Tutoriels - FAQ - Livres - Blog

    Vous voulez contribuer à la rubrique Oracle ? Contactez la rubrique !

    OCILIB (C Driver for Oracle)

    Librairie C Open Source multi-plateformes pour accéder et manipuler des bases de données Oracle

  11. #11
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    44
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 44
    Par défaut
    lorsque je exécute le programme :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
    exec(): 0509-036 Cannot load program main because of the following errors:
            0509-022 Cannot load module $HOME/lib/libocilib.a(libocilib.so.3).
            0509-150   Dependent module /appli/oracle/product/10.2.0/lib/libclntsh.a(shr.o) could not be loaded.
            0509-103   The module has an invalid magic number.
            0509-022 Cannot load module main.
            0509-150   Dependent module $HOME/lib/libocilib.a(libocilib.so.3) could not be loaded.
            0509-022 Cannot load module .

  12. #12
    Rédacteur
    Avatar de Vincent Rogier
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    2 373
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 2 373
    Par défaut
    ton prog essaie de charger les lib oracle depuis $ORACLE_HOME/lib au lieu de $ORACLE_HOME/lib32

    Donc vérifies :

    - que ta ligne de commande pour ton prog mentionne bien /lib32
    - que tu aie bien mis à jour lib32 dans LD_LIBRARY_PATH
    Vincent Rogier.

    Rubrique ORACLE : Accueil - Forum - Tutoriels - FAQ - Livres - Blog

    Vous voulez contribuer à la rubrique Oracle ? Contactez la rubrique !

    OCILIB (C Driver for Oracle)

    Librairie C Open Source multi-plateformes pour accéder et manipuler des bases de données Oracle

  13. #13
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    44
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 44
    Par défaut
    ca a marché!!

    en faite j'ai oublié de modifié dans le Makefile $ORACLE_HOME/lib en $ORACLE_HOME/lib32

    Merci infiniment

  14. #14
    Rédacteur
    Avatar de Vincent Rogier
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    2 373
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 2 373
    Par défaut
    bon, ca signifie aussi qu'il faudra que je modifie mon acocilib.m4 pour gérer cette histoire de lib32 pour les compils 32bits

    Car ton install d'oracle a installé dans /lib les lib 64bits et dans /lib32 les libs 32 bits... Mais ta machine est une 32 bits ors elle aurait pu être une 64bits..

    je gére déja l'histoire des lib, lib32, lib64 mais seulement dans le cas de compilations en 64 bits...

    Ors le configure ne sait pas forcément si on est en 32 ou en 64 bits...

    Va falloir que je m'arrache les cheveux dessus
    Vincent Rogier.

    Rubrique ORACLE : Accueil - Forum - Tutoriels - FAQ - Livres - Blog

    Vous voulez contribuer à la rubrique Oracle ? Contactez la rubrique !

    OCILIB (C Driver for Oracle)

    Librairie C Open Source multi-plateformes pour accéder et manipuler des bases de données Oracle

  15. #15
    Membre averti
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    44
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2007
    Messages : 44
    Par défaut
    ah juste pour info, il semblerait que la machine soit une machine 64 bits... (powerpc)

  16. #16
    Rédacteur
    Avatar de Vincent Rogier
    Profil pro
    Inscrit en
    Juillet 2007
    Messages
    2 373
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Juillet 2007
    Messages : 2 373
    Par défaut


    je t'ai posé plusieurs fois la question

    Tu pouvais pas t'en rendre compte avant ???

    tout s'explique !!!

    gcc compile par défaut en 32 bits... et c'esgt pour ca que ca plantait !!

    Bon, c'est pas grave... l'essentiel c'est que ca fonctionne...
    Vincent Rogier.

    Rubrique ORACLE : Accueil - Forum - Tutoriels - FAQ - Livres - Blog

    Vous voulez contribuer à la rubrique Oracle ? Contactez la rubrique !

    OCILIB (C Driver for Oracle)

    Librairie C Open Source multi-plateformes pour accéder et manipuler des bases de données Oracle

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [OCILIB] Problème d'execution sous AIX
    Par farid Guennif dans le forum Interfaces de programmation
    Réponses: 12
    Dernier message: 13/03/2009, 12h21
  2. Affectation de ressource pour Oracle sous Aix
    Par schumi101 dans le forum Administration système
    Réponses: 9
    Dernier message: 15/06/2006, 10h32
  3. rerouter la sortie standard sous AIX
    Par HRS dans le forum Langage
    Réponses: 6
    Dernier message: 10/03/2006, 14h23
  4. Probleme de compilation Postgresql sous Aix 4.3.3
    Par bustaf dans le forum PostgreSQL
    Réponses: 4
    Dernier message: 16/12/2005, 12h04
  5. Librairies dynamique sous AIX en C++ : MaLib.so
    Par didierM dans le forum Autres éditeurs
    Réponses: 1
    Dernier message: 23/10/2003, 18h19

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