在linux下面的大型工程很多都是makefile管理的,但是随着工程越来越大,makefile编写又成了一个大工程,这个时候出现了两个比较流行的工具,cmake和configure,configure又衍生出来一套automake。
继续阅读“autogen.sh 的使用”xcode 手工下载安装模拟器runtime
Install and manage Simulator runtimes from the command line
Download the Simulator runtime you want to install from the Apple Developer website. Then follow these steps with the command line to install it:
- Select a version of Xcode.
- Run the first launch experience to install the required system components, including simctl.
- Install the Simulator runtime with simctl.
simctl verifies the signature of the downloaded Simulator runtime, and then installs it in a secure location on your computer.
For example:
xcode-select -s /Applications/Xcode-beta.app
xcodebuild -runFirstLaunch
xcrun simctl runtime add “~/Downloads/watchOS 9 beta Simulator Runtime.dmg”
Tip
To learn more about additional runtime management features, run xcrun simctl runtime.
To download and install all the platforms that the Xcode version you selected supports, use the -downloadAllPlatforms option on xcodebuild.
xcodebuild -downloadAllPlatforms
To download and install Simulator runtimes for a specific platform, use the -downloadPlatform option and specify the platform.
sqldeveloper MacOS启动异常
cd /Users/用户名/Documents/programs/SQLDeveloper.app/Contents/Resources/sqldeveloper
zsh sqldeveloper.sh
清理mac 启动台图标
1、sqlite3数据库位置
/private/var/folders/73/w1gsct654151mgqzf218d8qh0000gn/0/com.apple.dock.launchpad/db
2、读取db文件
sqlite3 dbfile
3、查看表
.tables
4、查看表结构
select * from sqlite_master where type=”table” and name=’apps’
5、Sql 操作
MacOS chflags 文件标志 attr
MacOS 卸载dmg app
Mac OS X下的程序,通常不像Windows电脑下的那么复杂,什么注册表,DLL什么的,完全不用考虑。
要删除一个电脑程序之前,我先说一下安装一个程序后,通常生成了什么文件。
继续阅读“MacOS 卸载dmg app”
