如何編譯 gcc 、 intel 靜態庫? (How to compile wth gcc , intel static libraries?)


問題描述

如何編譯 gcc 、 intel 靜態庫? (How to compile wth gcc , intel static libraries?)

我有一個用 gcc 編譯的程序。我有一個使用英特爾編譯器 (icc) 編譯的靜態庫(.a 文件)。

我如何使用該庫並與該庫鏈接?(我沒有 icc,另一方必須使用 icc 才能使用 Intel 指令集)。

我正在嘗試編譯(與該庫鏈接),但 Intel 指令出錯。 ..

  • 我的目標是 Intel I7。
  • 我得到的第一個錯誤是:“undefined reference to `_intel_fast_memcpy'”

謝謝


參考解法

方法 1:

Please look into the recommendation provided at Intel C++ Compiler forum thread: https://software.intel.com/en‑us/forums/intel‑c‑compiler/topic/310493. Hope this helps.

(by user5109370Anoop ‑ Intel)

參考文件

  1. How to compile wth gcc , intel static libraries? (CC BY‑SA 2.5/3.0/4.0)

#intel #GCC #C++ #icc






相關問題

x86 彙編程序崩潰,可能忽略了簡單的錯誤 (x86 assembly procedure crashes, possibly overlooking simple error)

英特爾虛擬化問題 (Android Studio) (Intel Virtualization Problems (Android Studio))

Intel 芯片組 - GPIO 編程 (Intel chipset - GPIO programming)

如何編譯 gcc 、 intel 靜態庫? (How to compile wth gcc , intel static libraries?)

我們可以在 OpenWrt linux 操作系統上運行 DPDK 應用程序嗎? (Can we run DPDK application on OpenWrt linux os?)

如何將內存中的 96 位加載到 XMM 寄存器中? (How to load 96 bits from memory into an XMM register?)

英特爾 PIN 二進制檢測工具中的 16 個通用寄存器如何表示 (How are the 16 General Purpose Registers represented in Intel PIN binary instrumentation tool)

Delphi 的 x86 代碼生成器框架 (x86 code generator framework for Delphi)

處理器:如何獲取有關英特爾至強的緩存信息 (Processor : How to get cache information about intel xeon)

任何人都試圖為另一個操作系統編譯 Intel xf86_video_intel (Anyone tried to compile Intel xf86_video_intel for another OS)

飛地字段不工作,但沒有錯誤 (Enclave field not working, but there is no error)

是否可以在 Intel SDE 中結合 CPUID 和指令集仿真參數 (Is it possible to combine CPUID and Instruction set emulation arguments in Intel SDE)







留言討論