php editor Baicao introduces you how to use gcc (mingw32) to compile a DLL with a static library. During the development process, it is often necessary to package static libraries into DLLs for easy calling in other projects. The method of using gcc (mingw32) to compile a DLL with a static library is relatively simple, just follow certain steps. First, make sure you have mingw32 and gcc compilers installed. Then, enter gcc -shared -o libname.dll libname.a on the command line to generate the DLL file. This way you can easily compile the static library into a DLL for use in other projects.
Question content
I have a static library generated by an external tool (i.e. cgo), let's call it libsecondary.a. I want to generate a dynamic library while including "libsecondary.a" as a dependency, I export a function called onprocessinit() in libsecondary.h and call it on the dll_process_attach event.
I tried generating the shared library but it doesn't seem to work x86_64-w64-mingw32-share-l. -lsecondary -static-libgcc -static-libstdc -static .\dllmain.c
The error output is dllmain.c:(.text 0x9b): Undefined reference to 'onprocessinit', what's going on?
This is the header file libsecondary.h
/* code generated by cmd/cgo; do not edit. */ /* package command-line-arguments */ #line 1 "cgo-builtin-export-prolog" #include <stddef.h> #ifndef go_cgo_export_prologue_h #define go_cgo_export_prologue_h #ifndef go_cgo_gostring_typedef typedef struct { const char *p; ptrdiff_t n; } _gostring_; #endif #endif /* start of preamble from import "c" comments. */ /* end of preamble from import "c" comments. */ /* start of boilerplate cgo prologue. */ #line 1 "cgo-gcc-export-header-prolog" #ifndef go_cgo_prologue_h #define go_cgo_prologue_h typedef signed char goint8; typedef unsigned char gouint8; typedef short goint16; typedef unsigned short gouint16; typedef int goint32; typedef unsigned int gouint32; typedef long long goint64; typedef unsigned long long gouint64; typedef goint64 goint; typedef gouint64 gouint; typedef size_t gouintptr; typedef float gofloat32; typedef double gofloat64; #ifdef _msc_ver #include <complex.h> typedef _fcomplex gocomplex64; typedef _dcomplex gocomplex128; #else typedef float _complex gocomplex64; typedef double _complex gocomplex128; #endif /* static assertion to make sure the file is being used on architecture at least with matching size of goint. */ typedef char _check_for_64_bit_pointer_matching_goint[sizeof(void*)==64/8 ? 1:-1]; #ifndef go_cgo_gostring_typedef typedef _gostring_ gostring; #endif typedef void *gomap; typedef void *gochan; typedef struct { void *t; void *v; } gointerface; typedef struct { void *data; goint len; goint cap; } goslice; #endif /* end of boilerplate cgo prologue. */ #ifdef __cplusplus extern "c" { #endif extern __declspec(dllexport) void onprocessinit(); #ifdef __cplusplus } #endif
This is dllmain.c
65be0f35ebbcbcThis is the exported golang function (the function I compiled using go build -buildmode=c-archive)
package main import "C" import ( "unsafe" "syscall" ) //export OnProcessInit func OnProcessInit() { const ( NULL = 0 MB_OK = 0 ) caption := "Hola" title := "desdegoo" ret, _, _ := syscall.NewLazyDLL("user32.dll").NewProc("MessageBoxW").Call( uintptr(NULL), uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(caption))), uintptr(unsafe.Pointer(syscall.StringToUTF16Ptr(title))), uintptr(MB_OK)) if ret != 1 { return } return } func main() {}
Solution
Wow, the answer is argument position,
x86_64-w64-mingw32 -shared -static-libgcc -static-libstdc -static .\dllmain.c .\libsecondary.a
If you type it backwards, it won't find the reference from libsecondary.a, OMG...
The above code will also get into a deadlock when loading, because syscall.NewLazyDLL calls LoadLibraryA, and it is locked in DLL_PROCESS_ATTACH, so the solution is to CreateThread and run the golang exported function inside the thread :)
The above is the detailed content of Compile DLL with static library using gcc (mingw32). For more information, please follow other related articles on the PHP Chinese website!

typedef的用法是为已经存在的数据类型创建新的别名。使用typedef可以增加代码的可读性和可维护性,特别是在处理复杂的数据类型时。对于简单的数据类型,如整数、浮点数或字符,使用别名的好处并不明显。然而,对于指针、结构体、数组和函数等复杂的数据类型,使用别名的优势就显而易见了。typedef不能用于变量或函数定义之前,通常在程序文件的顶部或结构体定义之后创建。

Linux内核定时器与延迟工作是两种常用的实现定时任务和延后执行任务的机制,它们可以让驱动程序在合适的时间点执行特定的函数,以适应硬件设备的需求和特性。但是,如何正确地使用Linux内核定时器与延迟工作呢?本文将从理论和实践两方面,介绍Linux内核定时器与延迟工作驱动开发的基本知识和技巧,以及一些常见的问题和解决方法。内核定时器软件上的定时器最终要依靠硬件时钟来实现,简单的说,内核会在时钟中断发生后检测各个注册到内核的定时器是否到期,如果到期,就回调相应的注册函数,将其作为中断底半部来执行。实

要编写一个简单的 C 语言烟花代码,需要遵循以下步骤:包含头文件和库。定义常量和宏。创建粒子数据结构。声明全局变量。在 main() 函数中初始化烟花粒子。在游戏循环中更新粒子的位置和速度,并绘制它们。检查和销毁已达到寿命的粒子。

我有一个由外部工具(即cgo)生成的静态库,我们将其称为libsecondary.a。我想生成一个动态库,同时包含“libsecondary.a”作为依赖项,我在libsecondary.h中导出一个名为onprocessinit()的函数,并在dll_process_attach事件上调用它。我尝试生成共享库,但似乎无法使用x86_64-w64-mingw32-共享-l。-lsecondary-static-libgcc-static-libstdc++-static.\d

C++和C语言是两种流行的编程语言,它们在很多方面都相似,但也有许多显著的差异。本文将深入探讨C++和C语言的异同点,并通过具体的代码示例来说明它们之间的差异。一、基本语法和结构差异1.1数据类型定义在C语言中,定义变量时需要先声明数据类型,例如:intnum;而在C++中,可以在定义变量的同时进行初始化,例如:intnum=10;1.2函数定义

信号是Linux系统中一种常用的进程间通信和控制的方法,它可以让一个进程向另一个进程发送一个简单的消息,通知它发生了某种事件或者状态。信号的作用是提高系统的响应性和灵活性,以应对一些异常或者紧急的情况。在Linux系统中,有很多种信号,如SIGINT、SIGTERM、SIGKILL等,它们各有各的含义和作用,适用于不同的场景和需求。但是,你真的了解Linux下的信号机制吗?你知道如何在Linux下使用信号进行进程间通信和控制吗?你知道如何在Linux下处理和忽略信号吗?本文将为你详细介绍Linu

函数指针应用于以下场景:回调函数:允许在函数调用完成后执行另一个函数。多态性:根据对象类型动态调用不同方法。数据结构存储:将函数存储在数据结构中,以便在运行时调用。优化性能、代码重用、测试和模拟等其他场景。

我正在尝试创建从go调用rust函数的可能性,然后所述rust函数将函数回调到go。我使用cgo作为go和rust之间的ffi接口。以下是我的go代码(src/main.go):packagemainimport("c""fmt""unsafe")/*#cgocflags:-i./../lib#cgoldflags:-l./../bin-lgo_move-wl,-rpath=./bin#include"m


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
