我試圖編譯並安裝x264 H.264/AVC編碼器。 我已安裝gcc
。但是當我運行時,我得到'沒有工作的C編譯器'錯誤:在Mac OS X上編譯x264時出錯
./configure --enable-shared --enable-static
我該怎麼辦?
配置日誌說:
/bin/gcc conftest.c -Wall -I. -I$(SRCPATH) -falign-loops=16 -mdynamic-no-pic -o conftest
clang: error: unknown argument: '-falign-loops=16' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
您是否在命令行嘗試'gcc'來查看您的gcc是否可用,例如,在您的路徑中? –
是的,它可用。它位於/ usr/bin/gcc中。 – imdadable
config.log表示:檢查-mdynamic-no-pic ...否 2失敗的命令行是: 3 ----------------------- --------------------------- 4/usr/bin/gcc conftest.c -Qunused-arguments -Wall -I。 -I $(SRCPATH)-falign-lo ops = 16 -mdynamic-no-pic -o conftest 5鐺:錯誤:未知參數:'-falign-loops = 16'[-Wunused-command-line-ar gument- hard-error-in-future] 6鐺:注意:這將是一個硬錯誤(不能降級爲警告)在將來 – imdadable