hey so im working on a library collection but i hit a small problem: I want my library to work without c++ std but I have c std
so the current problem is i need atomics but i dont want to implement compiler specific code to make it, I just relalized i could just write a wrapper around the c implementation. So my question is how should i go about development withouth c++ std with c std?
#need std but there is no std
1 messages · Page 1 of 1 (latest)
When your question is answered use !solved to mark the question as resolved.
Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.
The reason some projects chose to disable std c++ but not std c like ue5
also I would like to be able to use my lib maybe for embeded.
just use C libs then
or statically link with std lib (be aware of some license implications)
i never really done code for embeded is it true that c is more supported?
i just cant program without the c standard
ty