• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

Commit MetaInfo

Revision277d350cb3f126181bb2e6105f87ad677ab8ae3b (tree)
Time2024-11-19 13:34:13
Authormatsuand <30614168+matsuand@user...>
Commitermatsuand

Log Message

Update

Change Summary

Incremental Difference

--- a/BLFS/Xorg/xf86-video-vmware.sh
+++ b/BLFS/Xorg/xf86-video-vmware.sh
@@ -35,7 +35,7 @@ make \
3535 1> $LOG/$TARGET.2_make.log 2>&1 || exit 1
3636
3737 Installing
38-porg -lp $TARGET "make install" \
38+porg -lp $TARGET -E$PWD "make install" \
3939 1> $LOG/$TARGET.3_install.log 2>&1 || exit 1
4040
4141 TimeEnd
--- a/BLFS/qt-creator.sh
+++ b/BLFS/qt-creator.sh
@@ -2,11 +2,11 @@
22
33 . ./_blfsset.sh
44
5-APPNAME=which
6-VER=2.21
5+APPNAME=qt-creator
6+VER=14.0.2
77 TARGET=$APPNAME-$VER
8-TARGETBALL=$DLD/$TARGET.tar.gz
9-TARGETDIR=$TARGET
8+TARGETBALL=$DLD/$APPNAME-opensource-src-$VER.tar.xz
9+TARGETDIR=$APPNAME-opensource-src-$VER
1010
1111 echo $TARGET
1212
@@ -23,21 +23,29 @@ TimeStart
2323
2424 cd $TARGETDIR
2525
26+mkdir build
27+cd build
28+
2629 Configuring
27-./configure --prefix=/usr \
30+cmake \
31+ -DCMAKE_BUILD_TYPE=Debug \
32+ -G Ninja \
33+ -DCMAKE_PREFIX_PATH=/opt/qt6/lib \
34+ .. \
2835 1> $LOG/$TARGET.1_conf.log 2>&1 || exit 1
2936
3037 Making
31-make \
38+ninja \
3239 1> $LOG/$TARGET.2_make.log 2>&1 || exit 1
3340
3441 Installing
35-porg -lp $TARGET "make install" \
42+porg -lp $TARGET -E$PWD "\
43+ninja install" \
3644 1> $LOG/$TARGET.3_install.log 2>&1 || exit 1
3745
3846 TimeEnd
3947
40-cd ..
48+cd ../..
4149 RemoveSrcDir
4250 PorgingDone
4351
--- a/BLFS/qt6.sh
+++ b/BLFS/qt6.sh
@@ -30,7 +30,7 @@ TimeStart
3030
3131 cd $TARGETDIR
3232
33-export QT6PREFIX=/opt/qt5
33+export QT6PREFIX=/opt/qt6
3434
3535 Configuring
3636 ./configure -prefix $QT6PREFIX \