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
0 votes
0 answers
134 views

How to use an external static library in a Qt project in Qt Creator?

I am trying to import an external static library in my project. I have added .h files in my Qt Project and added the static library via the import external library option. test.h: #ifndef TEST_LIB_H #...
syrine dhouib's user avatar
0 votes
0 answers
870 views

Raylib Library is not linking correctly in C++ project

When I compile with gcc -g -o main.exe -Wall -std=c++11 -I./include/ -L./lib main.cpp -o main.exe -lraylib I get these compiler errors C:\mingw-w64\bin/ld.exe: C:\Users\usr\AppData\Local\Temp\ccjms0zo....
Alex's user avatar
  • 1
0 votes
0 answers
51 views

getting .a instead of .lib when building Qt from source

I was building Qt 6.4 from source following these instructions on Windows. I put '-static' as an argument when configuring with 'configure.bat' but after building i found only .a files instead of .lib....
ureadulose's user avatar
0 votes
0 answers
642 views

C# This is usually caused by different threads concurrently using the same instance of DbContext

I am getting an error in the system, what is the reason? I wasn't getting such errors in .NET 5. I've never encountered such a problem in APIs, I'm actually pretty new to async methods, can someone ...
Mehmet kelleli's user avatar
0 votes
0 answers
42 views

Getting overflow stack error when adding self-referencing entity in entity framework

I have a class named category in my project. I am trying to make subcategories of categories. The category class is self-referencing. My category class. public class Category : IEntity { [...
EMRE KAAN SEYLİM's user avatar
0 votes
0 answers
18 views

Why can't I execute my program? It seems that my makefile isn't creating an executable file:zsh: permission denied: ./libftprintf.a is the error I get [duplicate]

Here is my makefile: NAME = libftprintf.a SRCS = ft_printf.c \ ft_hexadecimal_fd.c \ ft_putchar_fd.c \ ft_putnbr_fd.c \ ft_putstr_fd.c OBJS = $(SRCS:.c=.o) ...
Aiert B's user avatar
-1 votes
1 answer
73 views

can I put my .a library from my objective-c project to my swift project with pods installed?

I have a library with .a format in my objective-c project. and I want to run it in my swift project that already installed cocoapods. my plan is I want to use that .a library and then convert my code ...
Qube's user avatar
  • 553
1 vote
0 answers
99 views

go build ld: warning: ignoring file xxx/libmd5tool.a, building for macOS-x86_64 but attempting to link with file built for unknown-unsupported file f

macos monterey12.6 Trying to go build project ld: warning: ignoring file /Users/xxx/Documents/go-repo/src/scbapi/vendor/apiutil/lib/libmd5tool.a, building for macOS-x86_64 but attempting to link with ...
RanCood's user avatar
  • 11
0 votes
1 answer
368 views

Cmake Top level project has two dependent projects, one child is also dependent on the other child

I have Project A at the top. Project A requires library B and library C. Library B also requires library C by itself. So, in short. How can I link libraries B and C up to A by just linking B? I have ...
shadow's user avatar
  • 11

15 30 50 per page
1
2 3 4 5
10