From 3f11d63a0f86191f010bc0093ee8616c154d9a1b Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Thu, 8 May 2025 00:13:07 +0200 Subject: Add builtin symbols --- rakelib/cross.rake | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'rakelib/cross.rake') diff --git a/rakelib/cross.rake b/rakelib/cross.rake index f90bb84..b390590 100644 --- a/rakelib/cross.rake +++ b/rakelib/cross.rake @@ -309,17 +309,6 @@ namespace :cross do sh env, 'make', '-j', Etc.nprocessors.to_s, chdir: cwd.to_path sh env, 'make', 'install', chdir: cwd.to_path end - - task :init, [:target] do |_, args| - options = find_build_target GCC_VERSION, args - env = { - 'PATH' => "#{options.rootfs.realpath + 'bin'}:#{ENV['PATH']}" - } - sh env, 'riscv32-unknown-linux-gnu-gcc', - '-ffreestanding', '-static', - '-o', (options.tools + 'init').to_path, - 'tools/init.c' - end end desc 'Build cross toolchain' @@ -329,7 +318,6 @@ task cross: [ 'cross:headers', 'cross:kernel', 'cross:glibc', - 'cross:gcc2', - 'cross:init' + 'cross:gcc2' ] do end -- cgit v1.2.3