Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bzip2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
bzip2
Commits
9989f33f
Commit
9989f33f
authored
May 29, 2021
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We no longer need to build bzip2 in cross compilation stage
parent
ed501725
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
39 deletions
+0
-39
build.xml
build.xml
+0
-39
No files found.
build.xml
deleted
100644 → 0
View file @
ed501725
<project
name=
"bzip2"
>
<target
name=
"temporary-bzip2"
>
<property
name=
"makedir"
value=
"${builddir}/bzip2-1.0.8"
/>
<exec
executable=
"tar"
failonerror=
"true"
>
<arg
line=
"xf packages/bzip2/bzip2-1.0.8.tar.gz -C ${builddir}"
/>
</exec>
<exec
executable=
"cp"
dir=
"${makedir}"
failonerror=
"true"
>
<arg
line=
"-v Makefile Makefile.orig"
/>
</exec>
<exec
executable=
"bash"
dir=
"${makedir}"
failonerror=
"true"
>
<arg
line=
"-c "sed -e 's@^\(all:.*\) test@\1@g' Makefile.orig > Makefile""
/>
</exec>
<exec
executable=
"make"
dir=
"${makedir}"
failonerror=
"true"
>
<env
key=
"PATH"
path=
"${PATH}"
/>
<env
key=
"CC"
value=
"${CLFS_TARGET}-gcc"
/>
<env
key=
"CXX"
value=
"${CLFS_TARGET}-g++"
/>
<env
key=
"AR"
value=
"${CLFS_TARGET}-ar"
/>
<env
key=
"AS"
value=
"${CLFS_TARGET}-as"
/>
<env
key=
"RANLIB"
value=
"${CLFS_TARGET}-ranlib"
/>
<env
key=
"LD"
value=
"${CLFS_TARGET}-ld"
/>
<env
key=
"STRIP"
value=
"${CLFS_TARGET}-strip"
/>
<arg
line=
"CC="${CLFS_TARGET}-gcc" AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib""
/>
</exec>
<exec
executable=
"make"
dir=
"${makedir}"
failonerror=
"true"
>
<env
key=
"PATH"
path=
"${PATH}"
/>
<env
key=
"CC"
value=
"${CLFS_TARGET}-gcc"
/>
<env
key=
"CXX"
value=
"${CLFS_TARGET}-g++"
/>
<env
key=
"AR"
value=
"${CLFS_TARGET}-ar"
/>
<env
key=
"AS"
value=
"${CLFS_TARGET}-as"
/>
<env
key=
"RANLIB"
value=
"${CLFS_TARGET}-ranlib"
/>
<env
key=
"LD"
value=
"${CLFS_TARGET}-ld"
/>
<env
key=
"STRIP"
value=
"${CLFS_TARGET}-strip"
/>
<arg
line=
"PREFIX=${sysrootdir}/tools install"
/>
</exec>
<delete
dir=
"${makedir}"
/>
</target>
</project>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment