X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f From: Martin Str|mberg Newsgroups: comp.os.msdos.djgpp Subject: Re: Does anybody remember how to compile djdev203? Date: Mon, 5 Aug 2013 10:01:03 +0000 (UTC) Organization: Aioe.org NNTP Server Lines: 23 Message-ID: References: <51ED59CB DOT 4040503 AT gmx DOT de> <51ED92DB DOT 8030503 AT gmx DOT de> NNTP-Posting-Host: ftvAZcRvOze4hbePWaim7g.user.speranza.aioe.org X-Complaints-To: abuse AT aioe DOT org User-Agent: tin/1.4.7-20030322 ("Suggestions") (UNIX) (SunOS/5.9 (sun4u)) X-Notice: Filtered by postfilter v. 0.8.2 Bytes: 1435 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Juan Manuel Guerrero wrote: > c:/djgpp-2.03/bin/make.exe -C go32 > gcc ... -c dpmiexcp.c > gcc ... -c exceptn.S > c:/TMP\ccf5N2Ic.s: Assembler messages: > c:/TMP\ccf5N2Ic.s:352: Warning: Indirect ljmp without `*' > c:/TMP\ccf5N2Ic.s:404: Warning: Indirect ljmp without `*' ... > I do not know if the assembler warning is serious. It's been a long time, but IIRC that warning is harmless. To check for sure create a .s or .asm file with the line it's warning about (and perhaps some other line like .section text if necessary) and assemble it to 1.o. Then add "*" to the line and reassemble to 2.o. Compare the results (objdump -d). HTH. -- MartinS