Official Codelite has Viruses? [closed] - c++

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am a first time user of stack overflow, and a newbie programmer. I was looking for a free IDE and I came across Codelite. I downloaded it and ran it, but Kaspersky flagged codelite-terminal.exe and two programs in the program setup file as viruses. I downloaded it from the official source forge website. Please advise. Thank you for your time!!!

It does not contain any viruses. You can always download the code and search for them ;) - thats the beauty of open source
Don't believe everything Kaspersky tells you...
Eran Ifrah
Author of CodeLite IDE

Related

Nemiver doesn't find file /build/glibc-LK5gWL/glibc-2.23/stdlib/random.c [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
When debugging code, when it comes to the rand () function, it asks where the file is. This file is not in libraries at all. What to do?
Your debugger is looking for source code to make itself more useful. In the case of compiled files that are part of glibc, that's not on your system. The path shown is just the path in the original build environment; that's irrelevant. It can use random.c if found elsewhere, but you need to tell it where to look.
The good news is that you can probably install a package to make this work. Which one depends on your operating system; you did not tell us what that is.
However I'd just hit "cancel". You don't need to debug the internals of glibc, unless you're actually trying to find bugs in glibc.

How to write a build script [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to write a build script which can compile the code, run the unit tests and produce a nuget package.
Can anyone please help or point me to the right direction.
Thanks.
Since you mentioned nuget, I presume you use C#. I had the best experience with Cake for build scripts.
Cake - Home
But seriously, any build system would do, goole is your friend for this. I would also advise against using powershell for this sort of job.

Generation of a project documentation [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I am not finding the different names of the different software which generate a documentation (Readme.txt) from the comments mentioned on the different Header and Cpp files, directly extracted from a visual studio solution C++ / project.
Already answered within this SO url
Another point of view, consideration of Natural Docs (only applied for Perl in my case but usable for C# in addition)
A couple of years ago, NDoc was suitable. Maybe that would not be working for VS 10.
You should look at Sandcastle help file builder. It is a set of tools that generate documentation in different formats from the XML comments in the source files.

How do I write a TCP app for AX22xx [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am have brought a Development board AX22001. I want to write an TCP app server/client.
But I don't really know, where to write app and how to program it over.
Do anyone in here have got any experience with AX22001?
I hope you guys can help, I did try to write to AX22001 support but they are too slow answering my questions.
You know, there's a fairly comprehensive amount of information, demo code, manuals, APIs, and references on their website: http://www.asix.com.tw/products.php?op=pItemdetail&PItemID=106;72;104. My suggestion would be to start reading through it!

Replace the C socket API in C++ on z/OS [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am including sys/socket.h, I still get compile time errors telling me that AF_INET is not defined. but still i am facing the issues getting the C sockets API to work properly in C++. please help me...
check out the z/OS UNIX System Services sockets section in the z/OS XL C/C++ Programming Guide. Make sure you're including the necessary header files and using the appropriate #defines.