mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
gcc: update to 9046071dddb0a9ee7e30e5edf27cfc53b5b9c238
Initializes the submodule Unfortunately, Buildroot does not seem to use it: https://stackoverflow.com/questions/54992977/how-to-select-an-override-srcdir-custom-source-code-for-gcc-when-building-buildr so tracking it here just for fun for now. We don't clone on ./build by default, so it should not impact anyone.
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -33,3 +33,6 @@
|
|||||||
[submodule "submodules/xen"]
|
[submodule "submodules/xen"]
|
||||||
path = submodules/xen
|
path = submodules/xen
|
||||||
url = git://xenbits.xen.org/xen.git
|
url = git://xenbits.xen.org/xen.git
|
||||||
|
[submodule "submodules/gcc"]
|
||||||
|
path = submodules/gcc
|
||||||
|
url = git@github.com:cirosantilli/gcc.git
|
||||||
|
|||||||
2
build
2
build
@@ -112,6 +112,8 @@ so looping over all of them would waste time.
|
|||||||
},
|
},
|
||||||
submodules_shallow = {
|
submodules_shallow = {
|
||||||
'binutils-gdb',
|
'binutils-gdb',
|
||||||
|
# https://stackoverflow.com/questions/54992977/how-to-select-an-override-srcdir-source-for-gcc-when-building-buildroot
|
||||||
|
# 'gcc',
|
||||||
'glibc',
|
'glibc',
|
||||||
},
|
},
|
||||||
# https://buildroot.org/downloads/manual/manual.html#requirement
|
# https://buildroot.org/downloads/manual/manual.html#requirement
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
|
BINUTILS_OVERRIDE_SRCDIR = ../../submodules/binutils-gdb
|
||||||
|
# https://stackoverflow.com/questions/54992977/how-to-select-an-override-srcdir-source-for-gcc-when-building-buildroot
|
||||||
|
GCC_OVERRIDE_SRCDIR = ../../submodules/gcc
|
||||||
|
GDB_OVERRIDE_SRCDIR = ../../submodules/binutils-gdb
|
||||||
|
GLIBC_OVERRIDE_SRCDIR = ../../submodules/glibc
|
||||||
LINUX_OVERRIDE_SRCDIR = ../../submodules/linux
|
LINUX_OVERRIDE_SRCDIR = ../../submodules/linux
|
||||||
QEMU_OVERRIDE_SRCDIR = ../../submodules/qemu
|
QEMU_OVERRIDE_SRCDIR = ../../submodules/qemu
|
||||||
GLIBC_OVERRIDE_SRCDIR = ../../submodules/glibc
|
|
||||||
BINUTILS_OVERRIDE_SRCDIR = ../../submodules/binutils-gdb
|
|
||||||
GDB_OVERRIDE_SRCDIR = ../../submodules/binutils-gdb
|
|
||||||
|
|||||||
1
submodules/gcc
Submodule
1
submodules/gcc
Submodule
Submodule submodules/gcc added at 9046071ddd
Reference in New Issue
Block a user