X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f X-Recipient: djgpp AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=WH6YVrNspflSrHYcSHmD0NR4mYe4qIjA30VqvFYWO/k=; b=u8EI3RznTDqrJcmD8GjpaCkRdKE3ZYt94kRVmD5gXp9WbCuNWyoJGzB6dnXLZZ572y 80KDBpLBx8efcTt8B96a0H9OKgB4xOS8JgD7fKiiTIYZoMS47g+6Sg/xT/bbGBfMRg+7 iZpmONoxwuqGCVSZT3Dh22oE/hdep6RU9XT7AnaH8lVoR9KlkrbPSvtYvAZU8jfwtMpg Zp1hT+uxn+MOHVRx5o6aCk+PuVrPxNcdbXrsodYdF1pJE5FpLx4vpTUF2jhqO5Dc7tV9 bm13Y8bRrwY3xqRJnTkmK7qm3J0cM1HW8gByBtqxbqboXSgOiBOYuQRBqwjuS/rVv/T4 88fQ== MIME-Version: 1.0 X-Received: by 10.107.17.206 with SMTP id 75mr18297637ior.140.1442141412372; Sun, 13 Sep 2015 03:50:12 -0700 (PDT) Date: Sun, 13 Sep 2015 13:50:12 +0300 Message-ID: Subject: binutils issue: different output from as from the exact same *.s file From: "Ozkan Sezer (sezeroz AT gmail DOT com) [via djgpp AT delorie DOT com]" To: djgpp Content-Type: text/plain; charset=UTF-8 Reply-To: djgpp AT delorie DOT com Using binutils-2.25.1-r2, on linux-i686 with a cross-toolchain and as a native dos/djgpp app. 'as' outputs the same binary *.o file for almost anything except for a particual fxtris.s source: http://uhexen2.sourceforge.net/tmp/fxtris.s If I compile using my linux cross-toolchain (no cmdline options, simply like 'as -o fxtris.o fxtris.s') it outputs an fxtris.o which is 318887 bytes: http://uhexen2.sourceforge.net/tmp/fxtris.o However the djgpp as.exe outputs an fxtris.o which is 318871 bytes: http://uhexen2.sourceforge.net/tmp/FXTRIS.O This happens with as.exe from official package or if I compile as.exe myself using my existing cross-toolchain. What is wrong here please? -- O.S.