[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] Pacify Oracle Studio 12.6 in init_switches
From: |
Paul Smith |
Subject: |
Re: [PATCH] Pacify Oracle Studio 12.6 in init_switches |
Date: |
Tue, 27 Aug 2019 14:10:36 -0400 |
On Tue, 2019-08-27 at 13:37 -0400, Dennis Clarke wrote:
> "src/arscan.c", line 43: warning: tokens ignored at end of directive
> line
This was addressed by Paul's patch "Pacify Oracle Studio 12.6"
> "src/dep.h", line 55: warning: nonportable bit-field type
> "src/dep.h", line 64: warning: nonportable bit-field type
> "src/function.c", line 41: warning: nonportable bit-field type
> "src/function.c", line 42: warning: nonportable bit-field type
These happen on Windows, too: it's because we're using a short as a
bitfield while some compilers allow only "int" and "unsigned int".
Others allow any integral type.
> "src/main.c", line 1054: warning: only 0 or 2 parameters allowed:
> main()
Hm. Maybe I can use gnulib's environ module instead. We'll see if
that works on Windows.
> "src/read.c", line 1405: warning: statement not reached
I think this is Paul's "Remove useless code in eval" patch.