1.當我們安裝好nginx後,輸入命令 nginx -v 可以看到nginx的編譯引數資訊,例如 如下圖
2. 編譯引數如下圖
# nginx安裝目的目錄或路徑# 執行對應模組時,nginx所保留的臨時性檔案
# nginx服務啟動時的使用者和使用者組
--user=nginx
--group=nginx
# 設定額外的引數將被新增到cflags變數
--with-cc-opt='-o2 -g -pipe -wall -wp,-d_fortify_source=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fpic'
--with-ld-opt='-wl,-z,relro -wl,-z,now -pie'
PHP編譯引數詳解
root lnmp01 tools tar xf php 5.3.27.tar.gz 解壓壓縮包 root lnmp01 tools cd php 5.3.27 進入 php安裝目錄 configure 編譯引數 指定php 的安裝路徑為 需要指定 mysql 的安裝路徑,安裝 php需要的 mys...
Mysql CMAKE編譯引數詳解
以下是博主原先整理的一些mysql編譯引數詳解,提供給熱衷於原始碼編譯安裝mysql的朋友們!dcmake install prefix 指向mysql安裝目錄 dinstall sbindir sbin 指向可執行檔案目錄 prefix sbin dmysql datadir var lib my...
gcc編譯引數詳解
gcc引數詳解 介紹 gcc and g 分別是 gnu的 c c 編譯器gcc g 在執行編譯工作的時候,總共需要4步 1.預處理,生成 i的檔案 2.將預處理後的檔案不轉換成組合語言 生成檔案 s 3.有彙編變為目標 機器 生成 o的檔案 4.連線目標 生成可執行程式 引數詳解 c 只啟用預處理...