Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom glibc build support for DCE on Ubuntu 20.04 #117

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on Aug 25, 2021

  1. _G_va_list __ap, _IO_getc and _IO_putc fix

    _G_config.h header file is not included in standard headers of Ubuntu-20.04, which defines _G_va_list.
    _IO_getc and _IO_putc are not a part of the libc-2.31, leading to missing symbols error.
    To fix it, extern(s) have been defined in case an executable linked with a libc supporting it is used, or if user provides an implementation for the same.
    
    Signed-off-by: Parth Pratim Chatterjee <[email protected]>
    ParthPratim committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    e742da9 View commit details
    Browse the repository at this point in the history
  2. SIOCGSTAMP fix

    Signed-off-by: Parth Pratim Chatterjee <[email protected]>
    ParthPratim committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    57c8c60 View commit details
    Browse the repository at this point in the history
  3. Added patch files for disabling glibc security checks and net-next-nu…

    …se linker script py 2 to 3
    
    Signed-off-by: Parth Pratim Chatterjee <[email protected]>
    ParthPratim committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    77cf494 View commit details
    Browse the repository at this point in the history
  4. Specify the installed directory of modified glibc-2.31

    Signed-off-by: Parth Pratim Chatterjee <[email protected]>
    ParthPratim committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    58e0ea1 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2021

  1. Add glibc path existence checks

    Check if the custom glibc install directory passed with --with-glibc exists or not.
    Also, move the checks to the top of def configure(), to avoid any compiler checks in case wrong glibc location is passed.
    
    Signed-off-by: Parth Pratim Chatterjee <[email protected]>
    ParthPratim committed Aug 26, 2021
    Configuration menu
    Copy the full SHA
    7f4ae0d View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2021

  1. Add -rpath-link to avoid collect2 errors from ld

    Signed-off-by: Parth Pratim Chatterjee <[email protected]>
    ParthPratim committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    87a3688 View commit details
    Browse the repository at this point in the history