OS Specific Toolchain GCC configurations
Posted: Thu Jun 28, 2018 5:34 pm
in the OS specific toolchain wiki it says to put in a line like:
in gcc/config.gcc
see: https://wiki.osdev.org/OS_Specific_Tool ... config.gcc
if I am porting Newlib as my library of choice, should that look like this instead?
Code: Select all
tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h glibc-stdint.h i386/i386elf.h myos.h"
see: https://wiki.osdev.org/OS_Specific_Tool ... config.gcc
if I am porting Newlib as my library of choice, should that look like this instead?
Code: Select all
tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h newlib-stdint.h i386/i386elf.h myos.h"