Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [.a]

A static library of object code in UNIX/Linux that can be used by the link editor to create an executable program.

0 votes
0 answers
10 views

Including static .a Libraries in CMake Project [duplicate]

I am working on a project for STM32 in VSCode and I need to include libraries with the .a extension to be able to call their functions. I need help with configuring CMake. My current CMake setup looks ...
WITC's user avatar
  • 197
1 vote
0 answers
57 views

wlink to create an executable from obj files and libraries

I got the newest version of WATCOMs wlink from github (V2.0 29.04.2024, https://github.com/open-watcom/open-watcom-v2) and djgpp-mingw-gcc1220-standalone from github too (https://github.com/andrewwutw/...
Fabian T's user avatar
0 votes
0 answers
42 views

In my .net core 8 mvc c# project, when I click on the category, the data comes as null listing the products in the relevant category

In my .net core 8 mvc c# project, when I click on the category, the data comes as null listing the products in the relevant category. when clicking on the category of the products listed on the ...
sandox's user avatar
  • 13
-1 votes
2 answers
202 views

How to link a static library to another

I have a problem with my static libraries. I got one for the use of multimedia elements and another for C general use (linked list...). I want them to be separated to not bloat my program. Try as I ...
Clément MONFORT's user avatar
0 votes
1 answer
654 views

g++ "/ld.exe: cannot find l:mylib.a: No such file or directory

After I have read several forum posts to my problem which not helped me at all, I ask you for help. I am trying to create a .dll with GNU compiler on Windows. This .dll needs a library, we call it ...
gollerxd's user avatar
0 votes
1 answer
64 views

Custom Static Library (.a lib) not found when building MakeFile for C++ Linux project

I have a custom library I made called AceLibraryLinux and I'm trying to use it in a C++ Linux program I made called RumPi (Raspberry Pi application I'm making). The .a file is called "...
Katianie's user avatar
  • 609