Add Oracle ol8u6 product to crosstool-ng

This commit adds support for the following Oracle products, in order
to target Oracle Linux 8.6:

Binutils 2.30-113.0.1
GCC      8.5.0-10.0.2
glibc    2.28-189.1.0.1
UEK5/u4  4.14.35-2025.400.8

Sample configuration files are provides for the following triplets:

aarch64-ol8u6-linux-gnu
x86_64-ol8u6-linux-gnu
i686-ol8u6-linux-gnu

Signed-off-by: Guillermo E. Martinez <guillermo.e.martinez@oracle.com>
This commit is contained in:
Guillermo E. Martinez 2022-05-19 09:44:30 -05:00 committed by Chris Packham
parent b88d338516
commit 2d6d22d96d
11 changed files with 180 additions and 0 deletions

View File

@ -0,0 +1,2 @@
repository_branch='oracle/binutils/ol8-u6'
version_number='2.30-113.0.1'

View File

@ -0,0 +1,87 @@
This patch is a backport from binutils-gdb.
This code is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any
later version.
This code is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
diff -urN binutils-gdb/bfd/elf.c binutils-gdb-oracle/bfd/elf.c
--- binutils-gdb/bfd/elf.c 2022-05-19 12:47:05.117663521 -0500
+++ binutils-gdb-oracle/bfd/elf.c 2022-05-19 12:49:00.128035105 -0500
@@ -11705,7 +11705,7 @@
bfd_vma (*r_sym) (bfd_vma);
-#ifdef BFD64
+#if BFD_DEFAULT_TARGET_SIZE > 32
if (bfd_arch_bits_per_address (abfd) != 32)
r_sym = elf64_r_sym;
else
@@ -11897,7 +11897,7 @@
asection * relsec;
bfd_vma (*r_info) (bfd_vma, bfd_vma);
-#ifdef BFD64
+#if BFD_DEFAULT_TARGET_SIZE > 32
if (bfd_arch_bits_per_address (abfd) != 32)
r_info = elf64_r_info;
else
diff -urN binutils-gdb/gold/errors.h binutils-gdb-oracle/gold/errors.h
--- binutils-gdb/gold/errors.h 2022-05-19 12:47:05.549657405 -0500
+++ binutils-gdb-oracle/gold/errors.h 2022-05-19 12:49:04.931967084 -0500
@@ -24,6 +24,7 @@
#define GOLD_ERRORS_H
#include <cstdarg>
+#include <string>
#include "gold-threads.h"
diff -urN binutils-gdb/gold/i386.cc binutils-gdb-oracle/gold/i386.cc
--- binutils-gdb/gold/i386.cc 2022-05-19 12:47:05.549657405 -0500
+++ binutils-gdb-oracle/gold/i386.cc 2022-05-19 12:49:08.803912259 -0500
@@ -865,7 +865,7 @@
// Record a target-specific program property in the .note.gnu.property
// section.
void
- record_gnu_property(int, int, size_t,
+ record_gnu_property(unsigned int, unsigned int, size_t,
const unsigned char*, const Object*);
// Merge the target-specific program properties from the current object.
@@ -1075,7 +1075,7 @@
// section.
void
Target_i386::record_gnu_property(
- int, int pr_type,
+ unsigned int, unsigned int pr_type,
size_t pr_datasz, const unsigned char* pr_data,
const Object* object)
{
diff -urN binutils-gdb/gold/x86_64.cc binutils-gdb-oracle/gold/x86_64.cc
--- binutils-gdb/gold/x86_64.cc 2022-05-19 12:47:05.549657405 -0500
+++ binutils-gdb-oracle/gold/x86_64.cc 2022-05-19 12:49:08.803912259 -0500
@@ -1192,7 +1192,8 @@
// Record a target-specific program property in the .note.gnu.property
// section.
void
- record_gnu_property(int, int, size_t, const unsigned char*, const Object*);
+ record_gnu_property(unsigned int, unsigned int, size_t,
+ const unsigned char*, const Object*);
// Merge the target-specific program properties from the current object.
void
@@ -1462,7 +1463,7 @@
template<int size>
void
Target_x86_64<size>::record_gnu_property(
- int, int pr_type,
+ unsigned int, unsigned int pr_type,
size_t pr_datasz, const unsigned char* pr_data,
const Object* object)
{

View File

@ -0,0 +1,12 @@
# Since Oracle provides different branches for GCC
# depending of the architecture:
#
# ARM64: 'oracle/gcc/ol8-u6-aarch64'
# i686,X86_64: 'oracle/gcc/ol8-u6-x86'
#
# branch name is adjusted in:
# samples/{aarch64,i686,x86_64}*ol8u6-*
#
# using CT_GCC_ORACLE_DEVEL_BRANCH
#
version_number='8.5.0-10.0.2'

View File

@ -0,0 +1,5 @@
master='gcc'
repository='git https://github.com/oracle/gcc.git'
origin='Oracle'
src_release='n'
src_devel='y'

View File

@ -0,0 +1,2 @@
repository_branch='oracle/glibc/ol8-u6'
version_number='2.28-189.1.0.1'

View File

@ -0,0 +1,21 @@
CT_CONFIG_VERSION="4"
CT_ARCH_ARM=y
CT_ARCH_64=y
CT_TARGET_VENDOR="ol8u6"
CT_KERNEL_LINUX=y
CT_LINUX_USE_ORACLE=y
CT_BINUTILS_USE_ORACLE=y
CT_BINUTILS_ORACLE_V_2_30_113=y
CT_BINUTILS_LINKER_LD_GOLD=y
CT_BINUTILS_GOLD_THREADS=y
CT_BINUTILS_LD_WRAPPER=y
CT_BINUTILS_PLUGINS=y
CT_GLIBC_USE_ORACLE=y
CT_GLIBC_EXTRA_CFLAGS="-Wno-missing-attributes -Wno-array-bounds -Wno-array-parameter -Wno-stringop-overflow -Wno-maybe-uninitialized"
CT_GLIBC_ENABLE_COMMON_FLAG=y
CT_CC_LANG_CXX=y
CT_GCC_USE_ORACLE=y
CT_ISL_V_0_16=y
CT_GCC_ORACLE_V_8=y
CT_GCC_ORACLE_VERSION="8.5.0"
CT_GCC_ORACLE_DEVEL_BRANCH="oracle/gcc/ol8-u6-aarch64"

View File

@ -0,0 +1,3 @@
reporter_name="Guillermo E. Martinez"
reporter_url=""
reporter_comment="OL 8.6 toolchain configured for AARCH64"

View File

@ -0,0 +1,21 @@
CT_CONFIG_VERSION="4"
CT_ARCH_X86=y
CT_ARCH_ARCH="i686"
CT_TARGET_VENDOR="ol8u6"
CT_KERNEL_LINUX=y
CT_LINUX_USE_ORACLE=y
CT_BINUTILS_USE_ORACLE=y
CT_BINUTILS_ORACLE_V_2_30_113=y
CT_BINUTILS_LINKER_LD_GOLD=y
CT_BINUTILS_GOLD_THREADS=y
CT_BINUTILS_LD_WRAPPER=y
CT_BINUTILS_PLUGINS=y
CT_GLIBC_USE_ORACLE=y
CT_GLIBC_EXTRA_CFLAGS="-Wno-missing-attributes -Wno-array-bounds -Wno-array-parameter -Wno-stringop-overflow -Wno-maybe-uninitialized"
CT_GLIBC_ENABLE_COMMON_FLAG=y
CT_CC_LANG_CXX=y
CT_GCC_USE_ORACLE=y
CT_ISL_V_0_16=y
CT_GCC_ORACLE_V_8=y
CT_GCC_ORACLE_VERSION="8.5.0"
CT_GCC_ORACLE_DEVEL_BRANCH="oracle/gcc/ol8-u6-x86"

View File

@ -0,0 +1,3 @@
reporter_name="Guillermo E. Martinez"
reporter_url=""
reporter_comment="OL 8.6 toolchain configured for i686"

View File

@ -0,0 +1,21 @@
CT_CONFIG_VERSION="4"
CT_ARCH_X86=y
CT_ARCH_64=y
CT_TARGET_VENDOR="ol8u6"
CT_KERNEL_LINUX=y
CT_LINUX_USE_ORACLE=y
CT_BINUTILS_USE_ORACLE=y
CT_BINUTILS_ORACLE_V_2_30_113=y
CT_BINUTILS_LINKER_LD_GOLD=y
CT_BINUTILS_GOLD_THREADS=y
CT_BINUTILS_LD_WRAPPER=y
CT_BINUTILS_PLUGINS=y
CT_GLIBC_USE_ORACLE=y
CT_GLIBC_EXTRA_CFLAGS="-Wno-missing-attributes -Wno-array-bounds -Wno-array-parameter -Wno-stringop-overflow -Wno-maybe-uninitialized"
CT_GLIBC_ENABLE_COMMON_FLAG=y
CT_CC_LANG_CXX=y
CT_GCC_USE_ORACLE=y
CT_ISL_V_0_16=y
CT_GCC_ORACLE_V_8=y
CT_GCC_ORACLE_VERSION="8.5.0"
CT_GCC_ORACLE_DEVEL_BRANCH="oracle/gcc/ol8-u6-x86"

View File

@ -0,0 +1,3 @@
reporter_name="Guillermo E. Martinez"
reporter_url=""
reporter_comment="OL 8.6 toolchain configured for x86_64"