Date: Tue, 17 Mar 1998 01:27:55 -0500 From: John Savage Subject: AS-unknown pseudo-op .p2align Sender: John Savage To: Anyone Message-ID: <199803170128_MC2-3706-D516@compuserve.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit Precedence: bulk Hi, I just downloaded DJGPP 2.8.0, and I tried to compile a little 'hello world' program, when as.exe said 'Error: unknown pseudo-op .p2align'. I turned on the -v option (the only option I used, except for -Wall), and it's using the 2.8.0 cpp and cc1, but it's using the 2.7.1 as. I then noticed that 2.8.0 doesn't come with as. Is the 2.7.1 as.exe supposed to work? I've RTFM, it didn't say anything about this. BTW, I read that this address (djgpp AT delorie DOT com) is a gateway to a newsgroup, but I don't (currently) have a newsreader, so if you can help me, you'll have to answer by mail. Here's hello.c: #include int main(void) { printf("Hello, world!\n"); return 1; } -John Savage