Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cookbook
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
cookbook
Merge requests
!11
Recipes for gcc, binutils, newlib
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Recipes for gcc, binutils, newlib
ids1024:toolchain
into
master
Overview
0
Commits
1
Pipelines
0
Changes
4
Merged
Ian Douglas Scott
requested to merge
ids1024:toolchain
into
master
7 years ago
Overview
0
Commits
1
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Viewing commit
c88984c5
Show latest version
4 files
+
175
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Unverified
c88984c5
Recipes for gcc, binutils, newlib
· c88984c5
Ian Douglas Scott
authored
7 years ago
recipes/gcc/recipe.sh
0 → 100644
+
60
−
0
Options
GIT
=
https://github.com/redox-os/gcc.git
BRANCH
=
redox
HOST
=
x86_64-elf-redox
export
AR
=
"
${
HOST
}
-ar"
export
AS
=
"
${
HOST
}
-as"
export
CC
=
"
${
HOST
}
-gcc"
export
CXX
=
"
${
HOST
}
-g++"
export
LD
=
"
${
HOST
}
-ld"
export
NM
=
"
${
HOST
}
-nm"
export
OBJCOPY
=
"
${
HOST
}
-objcopy"
export
OBJDUMP
=
"
${
HOST
}
-objdump"
export
RANLIB
=
"
${
HOST
}
-ranlib"
export
READELF
=
"
${
HOST
}
-readelf"
export
STRIP
=
"
${
HOST
}
-strip"
function
recipe_version
{
printf
"r%s.%s"
"
$(
git rev-list
--count
HEAD
)
"
"
$(
git rev-parse
--short
HEAD
)
"
return
1
}
function
recipe_update
{
echo
"skipping update"
return
1
}
function
recipe_build
{
./contrib/download_prerequisites
cp
config.sub gmp/config.sub
cp
config.sub isl/config.sub
cp
config.sub mpfr/config.sub
cp
-f
config.sub mpc/config.sub
pushd
libstdc++-v3
autoconf2.64
popd
mkdir
build
cd
build
../configure
--host
=
${
HOST
}
--target
=
${
HOST
}
--prefix
=
/
--enable-static
--disable-shared
--disable-dlopen
--disable-nls
--enable-languages
=
c
--without-headers
make all-gcc all-target-libgcc
return
1
}
function
recipe_test
{
echo
"skipping test"
return
1
}
function
recipe_clean
{
cd
build
make clean
return
1
}
function
recipe_stage
{
dest
=
"
$(
realpath
$1
)
"
cd
build
make
DESTDIR
=
"
$dest
"
install-gcc install-target-libgcc
return
1
}
Loading