2017-02-22 76 views
0

我有我嘗試運行,似乎特別需要OPENSSL_1.0.0 4版本的二進制:你如何建立Openssl_1.0.0版本4

Version needs section '.gnu.version_r' contains 2 entries: 
Addr: 0x00000000080486ac Offset: 0x0006ac Link: 6 (.dynstr) 
    000000: Version: 1 File: libcrypto.so.1.0.0 Cnt: 1 
    0x0010: Name: OPENSSL_1.0.0 Flags: none Version: 4 

我已經檢查了源代碼的OpenSSL出來的Git並構建了1.0.0穩定版,但無法弄清楚如何專門構建二進制文件所需的內容。

我應該從openssl repo簽出哪些版本,以及如何編譯它以便它可以被這個二進制文件使用?

下面是其他可能relivant領域從它的ELF頭:

ELF Header: 
    Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 
    Class:        ELF32 
    Data:        2's complement, little endian 
    Version:       1 (current) 
    OS/ABI:       UNIX - System V 
    ABI Version:      0 
    Type:        EXEC (Executable file) 
    Machine:       Intel 80386 
    Version:       0x1 
    Entry point address:    0x804a6e0 
    Start of program headers:   52 (bytes into file) 
    Start of section headers:   214412 (bytes into file) 
    Flags:        0x0 
    Size of this header:    52 (bytes) 
    Size of program headers:   32 (bytes) 
    Number of program headers:   9 
    Size of section headers:   40 (bytes) 
    Number of section headers:   37 
    Section header string table index: 34 


Relocation section '.rel.plt' at offset 0x73c contains 37 entries: 
Offset  Info Type   Sym.Value Sym. Name 
0805b038 00000d07 R_386_JUMP_SLOT 00000000 [email protected]_1.0.0 

Dynamic section at offset 0x11f0c contains 25 entries: 
    Tag  Type       Name/Value 
0x00000001 (NEEDED)      Shared library: [libcrypto.so.1.0.0] 

Symbol table '.dynsym' contains 43 entries: 
    Num: Value Size Type Bind Vis  Ndx Name  
    13: 00000000  0 FUNC GLOBAL DEFAULT UND [email protected]_1.0.0 (4) 

Version symbols section '.gnu.version' contains 43 entries: 
Addr: 0000000008048656 Offset: 0x000656 Link: 5 (.dynsym) 
    00c: 2 (GLIBC_2.0)  4 (OPENSSL_1.0.0) 2 (GLIBC_2.0)  0 (*local*) 
+0

我相信SONAME OPENSSL_1.0.0是OpenSSL 1.0.x系列。該行包括OpenSSL 1.0.1和1.0.2。結帳'OpenSSL_1_0_2-stable'。另請參閱OpenSSL網站上的[發佈策略](https://www.openssl.org/policies/releasestrat.html)。 – jww

回答