• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版67fc95e5e3e454551bea11aaea8697468f3bb70a (tree)
时间2020-05-19 20:15:17
作者matsuand <30614168+matsuand@user...>
Commitermatsuand

Log Message

[LFS] SVN-20200509

更改概述

差异

--- /dev/null
+++ b/LFS/5flex.sh
@@ -0,0 +1,43 @@
1+#/bin/sh
2+
3+CHAP=5
4+APPNAME=flex
5+VER=2.6.4
6+TARGET=$APPNAME-$VER
7+TARGETBALL=$TARGET.tar.gz
8+TARGETDIR=$TARGET
9+
10+echo $TARGET
11+
12+. ./_lfsset.sh
13+
14+cd $SRC
15+
16+echo \ \ Removing old directory...
17+rm -fr $TARGETDIR
18+
19+. $WRK/_extract.sh
20+
21+TimeStart
22+
23+cd $TARGETDIR
24+
25+echo \ \ Configuring...
26+./configure --prefix=/tools \
27+ 1> $LOG/$CHAP.$TARGET.1_conf.log 2>&1 || exit 1
28+
29+echo \ \ Making...
30+make \
31+ 1> $LOG/$CHAP.$TARGET.2_make.log 2>&1 || exit 1
32+
33+echo \ \ Installing...
34+make install \
35+ 1> $LOG/$CHAP.$TARGET.3_install.log 2>&1 || exit 1
36+
37+TimeEnd chap5
38+
39+echo \ \ Removing directory...
40+cd ..
41+rm -fr $TARGETDIR
42+
43+echo \ \ Done.
--- /dev/null
+++ b/LFS/6revisedchroot2.sh
@@ -0,0 +1,11 @@
1+#/bin/sh
2+
3+rm -f /usr/lib/lib{bfd,opcodes}.a
4+rm -f /usr/lib/libbz2.a
5+rm -f /usr/lib/lib{com_err,e2p,ext2fs,ss}.a
6+rm -f /usr/lib/libltdl.a
7+rm -f /usr/lib/libfl.a
8+rm -f /usr/lib/libz.a
9+
10+find /usr/lib /usr/libexec -name \*.la -delete
11+
--- a/LFS/6strippingagain1.sh
+++ /dev/null
@@ -1,13 +0,0 @@
1-#/bin/sh
2-
3-CHAP=6
4-
5-TARGET=chroot
6-
7-LFS=/mnt/lfs
8-
9-chroot $LFS /tools/bin/env -i \
10- HOME=/root TERM=$TERM \
11- PS1='(lfs chroot) \u:\w\$ ' \
12- PATH=/bin:/usr/bin:/sbin:/usr/sbin \
13- /tools/bin/bash --login