Fork of Lambertsen & Jenner (& al.)'s IA-16 (Intel 16-bit x86) port of GNU compilers ― added far pointers & more • use https://github.com/tkchia/build-ia16 to build • Ubuntu binaries at https://launchpad.net/%7Etkchia/+archive/ubuntu/build-ia16/ • DJGPP/MS-DOS binaries at https://gitlab.com/tkchia/build-ia16/-/releases • mirror of https://gitlab.com/tkchia/gcc-ia16
GNU General Public License v2.0
179
stars
13
forks
source link
Assembly listing output does not interleave C code into the listing, probably due to "target system does not support debug output" #105
However, trying this with gcc-ia16 outputs a warning that reads cc1: warning: target system does not support debug and does not include any high-level language listing.
Setting up gcc to create an (Intel syntax) assembly listing file allows to request "a high-level language listing", though it is written that
-g
needs to be specified for this. Most of the parameters needed for that I took from https://ftp.gnu.org/old-gnu/Manuals/gas-2.9.1/html_chapter/as_2.html#SEC10 plus the=file
specifier listed in https://astro.uni-bonn.de/~sysstw/CompMan/gnu/as.htmlHowever, trying this with gcc-ia16 outputs a warning that reads
cc1: warning: target system does not support debug
and does not include any high-level language listing.Here's a test case: