From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Tue, 16 Jan 2007 13:19:35 -0500 From: "Russ Cox" To: "Fans of the OS Plan 9 from Bell Labs" <9fans@cse.psu.edu> Subject: Re: [9fans] const if false In-Reply-To: <9ab217670701161002g33eeecc0u88e851e63a57d21f@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <13426df10701160939i7d46b5b1t8f89ab0ae88361cd@mail.gmail.com> <9ab217670701161002g33eeecc0u88e851e63a57d21f@mail.gmail.com> Topicbox-Message-UUID: 046f8310-ead2-11e9-9d60-3106f5b1d025 It sounds like you are running 8c -c file.c to compile file.c into an object file. This is a typical Unix command line, but on Plan 9 the compilers create object files, not executables, by default, so you can just say "8c file.c". Adding -c just sets the 'c' flag, which causes the compiler to print some more information about control flow, in this case a print about the const if false. If you just run 8c file.c (or even 8c -w file.c), you shouldn't see this message. If you still see a message, please report exactly what it is. Russ