⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 buildlib-linux-ipaq

📁 使用miniGUI模拟器的简单开发例子(值得参考)
💻
字号:
#!/bin/bashrm config.cache config.status -ffunction config {CC=armv4l-unknown-linux-gcc \./configure --prefix=/opt/host/armv4l/armv4l-unknown-linux \    --build=i386-linux \    --host=arm-unknown-linux \    --target=arm-unknown-linux \    --disable-static \    --with-style=phone \    --enable-nativegal \    $rot_dir \    --enable-ipaqial \    --disable-qvfbial \    --disable-nativeial \    --disable-latin9support \    --disable-big5support \    --enable-pngsupport \    --disable-cursor \    --disable-micemoveable \    --disable-dblclk    --disable-imegb2312 \    --disable-savebitmap \    --disable-savescreen \    --disable-aboutdlg \}OPTIONS="320x240 240x320"select opt in $OPTIONS; do    if [ $opt = "320x240" ]; then        unset rot_dir        config        exit 0    elif [ $opt = "240x320" ]; then        echo Please select a model for your iPAQ.        OPTIONS="H3600 H3800 Quit"        select opt in $OPTIONS; do            if [ "$opt" = "Quit" ]; then                echo Quit...                exit 0            elif [ "$opt" = "H3600" ]; then                rot_dir="--enable-coortrans_cw"                config                exit 0            elif [ "$opt" = "H3800" ]; then                rot_dir="--enable-coortrans_ccw"                config                exit 0            else                echo Please select a model for your iPAQ.            fi        done    fidone

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -