Discussion:
wmake error 24
(too old to reply)
jim Pisano
2013-06-02 23:52:38 UTC
Permalink
what's the cause of this:

Error(E24): More than one command list found for (version.obj)

thanks.
Jim
Paul S. Person
2013-06-03 16:50:43 UTC
Permalink
Post by jim Pisano
Error(E24): More than one command list found for (version.obj)
What does the command list for version.obj look like?
--
"Nature must be explained in
her own terms through
the experience of our senses."
Hans-Bernhard Bröker
2013-06-03 18:01:04 UTC
Permalink
Post by jim Pisano
Error(E24): More than one command list found for (version.obj)
The cause is pretty much exactly what the message says: you have
multiple command lists set up for the same target. So how's wmake to
know which of those it's meant to really use?

About the easiest way of running into this would be:

version.obj: version.c
$(COMPILE_CMD)

version.obj: version.c
$(COMPILE_CMD)
Steven Levine
2013-06-04 07:21:51 UTC
Permalink
On Mon, 3 Jun 2013 18:01:04 UTC, Hans-Bernhard Bröker
<***@physik.rwth-aachen.de>
wrote:

Hi,
Post by Hans-Bernhard Bröker
Post by jim Pisano
Error(E24): More than one command list found for (version.obj)
The cause is pretty much exactly what the message says: you have
multiple command lists set up for the same target. So how's wmake to
know which of those it's meant to really use?
version.obj: version.c
$(COMPILE_CMD)
version.obj: version.c
$(COMPILE_CMD)
It should be mentioned that for the cases where this behaviour is
desired wmake supports the :: delimiter between the target list and
the dependent list.

Steven
--
---------------------------------------------------------------------
Steven Levine <***@earthlink.bogus.net>
eCS/Warp/DIY etc. www.scoug.com www.ecomstation.com
---------------------------------------------------------------------
Loading...