簡體   English   中英

bpgview.c的主要功能不是由gcc編譯的

[英]The main function of bpgview.c is not compiled by gcc

BPG是一種數字圖像格式,比jpeg壓縮效率更高。 我想收集關於OS X 10.10.5(14F1509)libbpg-0.9.6。 我的Xcode版本是7.2.1 (7C1002)。

$gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents 
/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 7.0.2 (clang-700.1.81)
Target: x86_64-apple-darwin14.5.0
Thread model: posix

我已經安裝了所有必需的庫(請參閱:github.com/mirrorer/libbpg)。 當我運行make時,出現以下錯誤:

gcc -Os -Wall -MMD -fno-asynchronous-unwind-tables -fdata-sections -ffunction-sections -fno-math-errno -fno-signed-zeros -fno-tree-vectorize -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT -I. -DCONFIG_BPG_VERSION=\"0.9.6\" -g -I./x265/source -I./x265.out/8bit -c -o x265_glue.o x265_glue.c
g++ -g -Wl,-dead_strip -o bpgenc bpgenc.o x265_glue.o x265.out/8bit/libx265.a x265.out/10bit/libx265.a x265.out/12bit/libx265.a  -lpng -ljpeg  -lm -lpthread
gcc -Os -Wall -MMD -fno-asynchronous-unwind-tables -fdata-sections -ffunction-sections -fno-math-errno -fno-signed-zeros -fno-tree-vectorize -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_REENTRANT -I. -DCONFIG_BPG_VERSION=\"0.9.6\" -g -c -o bpgview.o bpgview.c
gcc -g -Wl,-dead_strip -o bpgview bpgview.o libbpg.a -lSDL_image -lSDL  -lm -lpthread
ld: entry point (_main) undefined. for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [bpgview] Error 1

我確實檢查了bpgview.o中的符號。 不僅沒有顯示int main ,而且還顯示了bpgview.c中的static void helpstatic void set_caption

$nm bpgview.o
             U _IMG_Load
             U _SDL_AddTimer
             U _SDL_CreateRGBSurface
             U _SDL_EnableKeyRepeat
             U _SDL_FillRect
             U _SDL_Flip
             U _SDL_FreeSurface
             U _SDL_GetVideoInfo
             U _SDL_Init
             U _SDL_LockSurface
             U _SDL_MapRGB
             U _SDL_PushEvent
             U _SDL_RemoveTimer
             U _SDL_SetVideoMode
             U _SDL_UnlockSurface
             U _SDL_UpperBlit
             U _SDL_WM_SetCaption
             U _SDL_WaitEvent
 00000000000006f6 T _SDL_main
             U ___snprintf_chk
             U ___stack_chk_fail
             U ___stack_chk_guard
             U ___stderrp
             U _bpg_decoder_close
             U _bpg_decoder_decode
             U _bpg_decoder_get_frame_duration
             U _bpg_decoder_get_info
             U _bpg_decoder_get_info_from_buf
             U _bpg_decoder_get_line
             U _bpg_decoder_open
             U _bpg_decoder_start
0000000000000000 T _bpg_load
0000000000000404 T _center_image
0000000000000465 T _draw_image
             U _exit
             U _fclose
             U _fopen
             U _fprintf
             U _fread
             U _free
             U _fseek
             U _ftell
             U _fwrite
             U _getopt
000000000000021f T _load_image
             U _malloc
0000000000000c64 t _open_window
             U _optind
000000000000069a T _pan_image
             U _printf
             U _realloc
00000000000003c6 t _restart_frame_timer
0000000000000cbc t _timer_cb

完整的make輸出在pastebin上。

我覺得這很奇怪,但是可能有些我不知道的gcc選項會讓編譯器忽略函數。 感謝您的時間。

我發現-e _SDL_main解決了缺少入口點的問題。 乍一看似乎很奇怪,但事實證明編譯器出於噴射未知的原因而不是_main使用此符號。

反匯編的目標文件和工作的二進制文件都是證明:( https://ptpb.pw/6kev.png

缺少的_help和_set_caption來自優化大小的-Os選項。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM