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
Commits
a15946a3
Unverified
Commit
a15946a3
authored
7 years ago
by
Ian Douglas Scott
Browse files
Options
Downloads
Patches
Plain Diff
System for compile-time dependencies; use for openssl
parent
d594e1ce
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!39
System for compile-time dependencies; use for openssl
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cook.sh
+16
-0
16 additions, 0 deletions
cook.sh
recipes/cargo/recipe.sh
+2
-17
2 additions, 17 deletions
recipes/cargo/recipe.sh
recipes/curl/recipe.sh
+2
-20
2 additions, 20 deletions
recipes/curl/recipe.sh
recipes/openssl/recipe.sh
+38
-0
38 additions, 0 deletions
recipes/openssl/recipe.sh
with
58 additions
and
37 deletions
cook.sh
+
16
−
0
View file @
a15946a3
...
...
@@ -95,6 +95,21 @@ function op {
fi
;;
prepare
)
rm
-rf
sysroot
mkdir
sysroot
if
[
${#
BUILD_DEPENDS
}
-gt
0
]
then
pushd
$ROOT
./repo.sh
${
BUILD_DEPENDS
}
popd
for
i
in
"
${
BUILD_DEPENDS
[@]
}
"
do
CC
=
cc cargo run
--release
--manifest-path
"
$ROOT
/pkgutils/Cargo.toml"
--bin
pkg
--
--target
=
$TARGET
install
--root
sysroot
"
$REPO
/
$i
.tar.gz"
done
fi
rm
-rf
build
cp
-r
source
build
...
...
@@ -105,6 +120,7 @@ function op {
;;
unprepare
)
rm
-rf
build
rm
-rf
sysroot
;;
version
)
pushd
build
>
/dev/null
...
...
This diff is collapsed.
Click to expand it.
recipes/cargo/recipe.sh
+
2
−
17
View file @
a15946a3
GIT
=
https://github.com/ids1024/cargo.git
BRANCH
=
redox
BUILD_DEPENDS
=(
openssl
)
function
recipe_build
{
if
[
-d
openssl-redox
]
then
git
-C
openssl-redox pull
else
git clone https://github.com/ids1024/openssl.git
-b
redox
--depth
1 openssl-redox
fi
rm
-rf
openssl-prefix
mkdir
openssl-prefix
pushd
openssl-redox
./Configure no-shared no-dgram redox-x86_64
--prefix
=
"/"
make
-j
"
$(
nproc
)
"
make
DESTDIR
=
"
$PWD
/../openssl-prefix"
install
popd
export
OPENSSL_DIR
=
$PWD
/openssl-prefix
export
OPENSSL_DIR
=
"
$PWD
/../sysroot"
}
This diff is collapsed.
Click to expand it.
recipes/curl/recipe.sh
+
2
−
20
View file @
a15946a3
GIT
=
https://github.com/ids1024/curl.git
BRANCH
=
redox
BUILD_DEPENDS
=(
openssl
)
HOST
=
x86_64-elf-redox
...
...
@@ -14,27 +15,8 @@ function recipe_update {
}
function
recipe_build
{
if
[
-d
openssl-redox
]
then
git
-C
openssl-redox pull
else
git clone https://github.com/ids1024/openssl.git
-b
redox
--depth
1 openssl-redox
fi
rm
-rf
openssl-prefix
mkdir
openssl-prefix
pushd
openssl-redox
./Configure no-shared no-dgram redox-x86_64
--prefix
=
"/"
make
-j
"
$(
nproc
)
"
make
DESTDIR
=
"
$PWD
/../openssl-prefix"
install
popd
rm
-rf
openssl-prefix/lib/pkgconfig
# pkg-config returns paths based on / prefix, breaking cross compile
./configure
--prefix
=
/
--host
=
${
HOST
}
--disable-tftp
--disable-ftp
--disable-ntlm-wb
--with-ssl
=
"
$PWD
/openssl-prefix"
--with-ca-path
=
/ssl/certs
./configure
--prefix
=
/
--host
=
${
HOST
}
--disable-tftp
--disable-ftp
--disable-ntlm-wb
--with-ssl
=
"
$PWD
/../sysroot"
--with-ca-path
=
/ssl/certs
make
skip
=
1
}
...
...
This diff is collapsed.
Click to expand it.
recipes/openssl/recipe.sh
0 → 100644
+
38
−
0
View file @
a15946a3
GIT
=
https://github.com/ids1024/openssl.git
BRANCH
=
redox
HOST
=
x86_64-elf-redox
function
recipe_version
{
printf
"r%s.%s"
"
$(
git rev-list
--count
HEAD
)
"
"
$(
git rev-parse
--short
HEAD
)
"
skip
=
1
}
function
recipe_update
{
echo
"skipping update"
skip
=
1
}
function
recipe_build
{
./Configure no-shared no-dgram redox-x86_64
--prefix
=
"/"
make
-j
"
$(
nproc
)
"
skip
=
1
}
function
recipe_test
{
echo
"skipping test"
skip
=
1
}
function
recipe_clean
{
make clean
skip
=
1
}
function
recipe_stage
{
dest
=
"
$(
realpath
$1
)
"
make
DESTDIR
=
"
$dest
"
install
rm
-rf
"
$1
/lib/pkgconfig"
# pkg-config returns paths based on / prefix, breaking cross compile
rm
-rf
"
$1
/{share,ssl}"
skip
=
1
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment