Hello
I have got some problems of compilation on a AIX IBM,
I use the XLC compilator (And I can't install another one).
I try to compile code Pro*c ".pc" (oracle), I need do a pre-compilation
after the pre-compilation with the my makefile I get the files ".c"
After this a get also the objects files ".o", but no linkage ! and I can't have the exec file !
I have got some errors how I dont understand really :
make -f proc.mk all
506-507 (W) No licenses available. Contact your program supplier to add additional users. Compilation will proceed shortly.
"pmag.c", line 293.28: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed.
"pmag.c", line 355.35: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed.
"pmag.c", line 357.40: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed.
"pmag.c", line 359.40: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed.
"pmag.c", line 990.43: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct PRE*" is not allowed.
"pmag.c", line 990.47: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed.
"pmag.c", line 1002.43: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct QRY*" is not allowed.
"pmag.c", line 1002.47: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed.
"pmag.c", line 1157.33: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct STA*" is not allowed.
"pmag.c", line 1157.37: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed.
"pmag.c", line 1252.25: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct ACK*" is not allowed.
"pmag.c", line 1252.29: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed.
"pmag.c", line 1317.25: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct ACK*" is not allowed.
"pmag.c", line 1317.29: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed.
"pmag.c", line 1973.18: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed.
325 1500-010: (W) WARNING in scn_glb: Infinite loop. Program may not stop.
986 1500-010: (W) WARNING in bat_s115: Infinite loop. Program may not stop.
1117 1500-010: (W) WARNING in mag: Infinite loop. Program may not stop.
2417 1500-010: (W) WARNING in oto_s115: Infinite loop. Program may not stop.
cc -L/produits/oracle/v716/lib -o pmag pmag.o /produits/oracle/v716/lib/libsql.a /produits/oracle/v716/lib/osntab.o -lsqlnet -lora /produits/oracle/v716/lib/libpls.a -lsqlnet -lnlsrtl -lcv6 -lcore -lnlsrtl -lcv6 -lcore -lm -lld -lm -lm -lld -lm pmis.o psto.o strategie.o mag.a wwin.a -lcurses
make : 1254-004 Code d'erreur de la dernière commande : 1.
Arrêt.
so the xlc compilator dont speak too mutch...
First: This Warning is very important ? or can I do my compilation ?
506-507 (W) No licenses available. Contact your program supplier to add additional users. Compilation will proceed shortly.
Ma deuxieme question est comment faire une bonne redirection des sorties standard et erreur sur IBM AIX ?
What I need to do to have a good error and standard out redirect on AIX IBM ?
After this I would like compile a simple code :
#include <stdio.h>
main()
{ printf("toto\n");
}
#cc toto.c -o toto
1506-507 (W) No licenses available. Contact your program supplier to add additional users. Compilation will proceed shortly.
#chmod 777 ./toto
#./toto
exec() : 0509-036 Impossible de charger le programme toto
en raison des erreurs suivantes :
0509-108 La section .loader n'existe pas. "can't find the .loader section"
it's a linker error too ? Can you give me some information THX
Alban 6 9672
On Wed, 08 Feb 2006 11:30:48 +0100, alban <ac******@cogelis.com>
wrote: Hello
I have got some problems of compilation on a AIX IBM, I use the XLC compilator (And I can't install another one).
I try to compile code Pro*c ".pc" (oracle), I need do a pre-compilation after the pre-compilation with the my makefile I get the files ".c" After this a get also the objects files ".o", but no linkage ! and I can't have the exec file !
I have got some errors how I dont understand really :
make -f proc.mk all 506-507 (W) No licenses available. Contact your program supplier to add additional users. Compilation will proceed shortly. "pmag.c", line 293.28: 1506-280 (W) Function argument assignment between types "char*" and "int" is not allowed.
It sounds like you are passing a const unsigned char * to a function
which the compiler thinks needs an int. This may be because you have
omitted the header file which contains the prototype for the function.
<snip> 325 1500-010: (W) WARNING in scn_glb: Infinite loop. Program may not stop.
This seems self-explanatory. Do you understand what is meant by
"Infinite loop"? Without seeing the code causing the error, we can't
possibly help on this one.
<snip>
First: This Warning is very important ? or can I do my compilation ?
All warnings are important. Nearly always, they are errors in your
code, and need to be fixed. This is (obviously) especially true if you
don't understand what's causing them.
<snip> it's a linker error too ? Can you give me some information THX
Most likely, the compiler, being more cautious than you, did not
produce linkable code.
--
Al Balmer
Sun City, AZ
alban wrote: Hello
I have got some problems of compilation on a AIX IBM, I use the XLC compilator (And I can't install another one).
I try to compile code Pro*c ".pc" (oracle), I need do a pre-compilation after the pre-compilation with the my makefile I get the files ".c" After this a get also the objects files ".o", but no linkage ! and I can't have the exec file !
I have got some errors how I dont understand really :
make -f proc.mk all 506-507 (W) No licenses available. Contact your program supplier to add additional users. Compilation will proceed shortly. "pmag.c", line 293.28: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed. "pmag.c", line 355.35: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed. "pmag.c", line 357.40: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed. "pmag.c", line 359.40: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed. "pmag.c", line 990.43: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct PRE*" is not allowed. "pmag.c", line 990.47: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed. "pmag.c", line 1002.43: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct QRY*" is not allowed. "pmag.c", line 1002.47: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed. "pmag.c", line 1157.33: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct STA*" is not allowed. "pmag.c", line 1157.37: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed. "pmag.c", line 1252.25: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct ACK*" is not allowed. "pmag.c", line 1252.29: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed. "pmag.c", line 1317.25: 1506-280 (W) Function argument assignment between types "unsigned char*" and "struct ACK*" is not allowed. "pmag.c", line 1317.29: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "union GLB*" is not allowed. "pmag.c", line 1973.18: 1506-280 (W) Function argument assignment between types "const unsigned char*" and "int" is not allowed. 325 1500-010: (W) WARNING in scn_glb: Infinite loop. Program may not stop. 986 1500-010: (W) WARNING in bat_s115: Infinite loop. Program may not stop. 1117 1500-010: (W) WARNING in mag: Infinite loop. Program may not stop. 2417 1500-010: (W) WARNING in oto_s115: Infinite loop. Program may not stop. cc -L/produits/oracle/v716/lib -o pmag pmag.o /produits/oracle/v716/lib/libsql.a /produits/oracle/v716/lib/osntab.o -lsqlnet -lora /produits/oracle/v716/lib/libpls.a -lsqlnet -lnlsrtl -lcv6 -lcore -lnlsrtl -lcv6 -lcore -lm -lld -lm -lm -lld -lm pmis.o psto.o strategie.o mag.a wwin.a -lcurses make : 1254-004 Code d'erreur de la dernière commande : 1.
Arrêt.
so the xlc compilator dont speak too mutch...
First: This Warning is very important ? or can I do my compilation ? 506-507 (W) No licenses available. Contact your program supplier to add additional users. Compilation will proceed shortly.
Ma deuxieme question est comment faire une bonne redirection des sorties standard et erreur sur IBM AIX ?
What I need to do to have a good error and standard out redirect on AIX IBM ?
After this I would like compile a simple code :
#include <stdio.h> main() { printf("toto\n"); }
#cc toto.c -o toto 1506-507 (W) No licenses available. Contact your program supplier to add additional users. Compilation will proceed shortly.
#chmod 777 ./toto #./toto exec() : 0509-036 Impossible de charger le programme toto en raison des erreurs suivantes : 0509-108 La section .loader n'existe pas. "can't find the .loader section"
it's a linker error too ? Can you give me some information THX
Alban
Tyr xlc_r rather than just plain cc. cc is the old K&R1 compiler used
for backward compatibility. It does not like code from code generators,
which is what Pro*C essentially is.
alban wrote: I have got some problems of compilation on a AIX IBM [...]
Your question is definitely off-topic for comp.lang.c
You might find someone more helpful in comp.unix.aix
On Thu, 09 Feb 2006 12:33:08 +0100, Nudge <ho******@kma.eu.org> wrote: alban wrote: I have got some problems of compilation on a AIX IBM [...] Your question is definitely off-topic for comp.lang.c
No, it isn't. The fact that he is using a specific implementation is
irrelevant to at least part of the problem. You might find someone more helpful in comp.unix.aix
--
Al Balmer
Sun City, AZ
On Wed, 08 Feb 2006 23:58:16 GMT, Stan Milam <st*****@swbell.net>
wrote: Tyr xlc_r rather than just plain cc. cc is the old K&R1 compiler used for backward compatibility. It does not like code from code generators, which is what Pro*C essentially is.
Are you recommending the use of a compiler which accepts incorrect
code?
--
Al Balmer
Sun City, AZ
On 2006-02-09, Al Balmer <al******@att.net> wrote: On Wed, 08 Feb 2006 23:58:16 GMT, Stan Milam <st*****@swbell.net> wrote:
Tyr xlc_r rather than just plain cc. cc is the old K&R1 compiler used for backward compatibility. It does not like code from code generators, which is what Pro*C essentially is.
Are you recommending the use of a compiler which accepts incorrect code?
I suspect that he's saying that "cc" does not accept correct code, not
that xlc_r accepts incorrect code
also note that there is NO code [other than which contains #error] that
a compiler is required by the standard to reject. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Ram Sundaram |
last post by:
Hi,
I am trying to port some linux code to windows under Visual studio.
The regex package currently used is the GNU regex package which calls
for <strings.h>. This is not found in visual studio....
|
by: wanghz |
last post by:
Hi,
Could I ask some questions about the conditional compilaion? Suppose I
have three simple files: a.c, b.c and c.h
/* --------a.c--------- */
#include <stdio.h>
#include "c.h"
int...
|
by: Tommy Vercetti |
last post by:
In Visual Studio .NET 2003, I do the following
1) File->New->Project
2) Visual C++ Projects->.NET->Windows Forms Application
3) Project->Add New Item->C++ File
4) Clear the new C++ file and...
|
by: Dan |
last post by:
Hi,
I have a problem using an aspx page with a Control on it. I get the
following error message
Compiler Error Message: CS1595: 'Test.Class2' is defined in multiple
places; using definition...
|
by: Kevin R. |
last post by:
I have been ignoring this problem for a few weeks now, but it's becoming
a bit annoying not to mention unproductive. Here it goes:
I compile my project with no errors. Then after I debug/run it,...
|
by: Steve |
last post by:
Hi
I'm receiving the following error whenever a new build is placed onto our
production server:
Timed out waiting for a program to execute. The command being executed was...
|
by: mwelsh1118 |
last post by:
Why doesn't C# allow incremental compilation like Java?
Specifically, in Java I can compile single .java files in isolation.
The resulting individual .class files can be grouped into .jar files....
|
by: BSand0764 |
last post by:
I'm getting an error that I can't seem to resolve. When I compile the
Functor related logic in a test program, the files compile and execute
properly (see Listing #1).
However, when I...
|
by: Roumen Petrov |
last post by:
Hi list members,
It seems to me that this is discussed many times in the past but without
progress. As I understand in general there is no objections and
preferred cross-compilation has to be...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: erikbower65 |
last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps:
1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal.
2. Connect to...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |