473,396 Members | 1,805 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Best Way to Compile Large Project

I have a large project on a Linux box that may eventually have several
hundred 'C' source files, which need to be compiled and linked into several
executables.

Not all of the executables will use all of the files (i.e. there would be no
linker references to some symbols).

The project will naturally be broken down into several or more
subdirectories.

Questions:

a)What is the best way in general to build? Compile all the .c files into
corresponding .o files, and then link the .o files explicitly?

b)Any thoughts on doing this with "make"?

c)Any thoughts on the limitations of the linker?

Thanks.

Dec 28 '06 #1
30 3820
"David T. Ashley" <dt*@e3ft.comwrites:
I have a large project on a Linux box that may eventually have several
hundred 'C' source files, which need to be compiled and linked into several
executables.

Not all of the executables will use all of the files (i.e. there would be no
linker references to some symbols).

The project will naturally be broken down into several or more
subdirectories.

Questions:

a)What is the best way in general to build? Compile all the .c files into
corresponding .o files, and then link the .o files explicitly?
Yes. An alternative, if the project is big, with subparts evolving at
different paces, would be to make libraries of subprojects (modules).

Also, it could be faster to build the libraries and link several
programs with a choice of these libraries, rather than linking these
programs from all the object files everytime. (Better benchmark it,
it'd depend on the project).

b)Any thoughts on doing this with "make"?
Yes. But read this first:

http://members.canb.auug.org.au/~mil...cons-harm.html

ie. use only one Makefile.

c)Any thoughts on the limitations of the linker?
None. I've got an empty brain. Sorry.
--
__Pascal Bourguignon__ http://www.informatimago.com/

"Specifications are for the weak and timid!"
Dec 28 '06 #2
David T. Ashley wrote:
I have a large project on a Linux box that may eventually have several
hundred 'C' source files, which need to be compiled and linked into several
executables.

Not all of the executables will use all of the files (i.e. there would be no
linker references to some symbols).

The project will naturally be broken down into several or more
subdirectories.

Questions:

a)What is the best way in general to build? Compile all the .c files into
corresponding .o files, and then link the .o files explicitly?

b)Any thoughts on doing this with "make"?

c)Any thoughts on the limitations of the linker?

Thanks.
<OT>
Have you tried Eclipse and CDT?
http://www.eclipse.org/
http://www.eclipse.org/cdt/
</OT>

Dec 28 '06 #3

"David T. Ashley" <dt*@e3ft.comwrote in message
news:nB*******************@fe178.usenetserver.com. ..
I have a large project on a Linux box that may eventually have several
hundred 'C' source files, which need to be compiled and linked into
several
executables.

Not all of the executables will use all of the files (i.e. there would be
no
linker references to some symbols).

The project will naturally be broken down into several or more
subdirectories.

Questions:

a)What is the best way in general to build? Compile all the .c files into
corresponding .o files, and then link the .o files explicitly?

b)Any thoughts on doing this with "make"?

c)Any thoughts on the limitations of the linker?

Thanks.
Build tools are off topic for clc, but you could start by looking
at make. The last time some of the folks on this board tried to
respond to a questions about "make" several showed they had
noclue Best done by a search and use of your man pages.

<<OT>>
If you have a fully installed development environment you may
take a look at autoconf and automake. But, they come with
caveats with you should look at as well, which may lead you
to better tools.
<</OT>>
Dec 28 '06 #4
b)Any thoughts on doing this with "make"?
>
We're in a situation much like your own. More then 100 files, at least 10
applications build from both our "framework" code and application specific
code.

If you consider make then try out makepp instead:
http://makepp.sourceforge.net/

I've used it for like 3 years for now and don't regret it at all!
It's suppose to be a make replacement and it solves several issues that make
has.
E.g. it has an automatic dependency scanner and I've never suffered from
files which were not correctly recompiled.
Also it won't need recursing (in most cases) like traditional make.

Besides you can write extra scripts for it in perl.

The downside is though that it's a bit slower since it's written in perl.
However this is a cheap price to pay. Also the latest build from CVS is
nessecary but not always stable. I've contributed with alot of feedback to
the project so far but usually it's only for the better.

One more thing is that it's very portable. We use it on Windows, Linux,
Macosx, Solaris, AIX and HP-UX and also support several cross compilers
without additional scripts or applications.

At least if you consider make then give this one a try.

-- Henrik
Dec 28 '06 #5
On Wed, 27 Dec 2006 22:11:31 -0500
"David T. Ashley" <dt*@e3ft.comwrote:
I have a large project on a Linux box that may eventually have
several hundred 'C' source files, which need to be compiled and
linked into several executables.
That's not a large project :)
Not all of the executables will use all of the files (i.e. there
would be no linker references to some symbols).
Then you should consider using shared objects (.so libraries).
The project will naturally be broken down into several or more
subdirectories.
One hopes so. Also consider using a version control system. Subversion
is pretty neat and a doddle to set up.
Questions:

a)What is the best way in general to build? Compile all the .c files
into corresponding .o files, and then link the .o files explicitly?
See above. One would normally group the related functions into shared
libraries, and then link the various programs against these libraries.
Just linking everything statically is so twentieth century, dear :)
>
b)Any thoughts on doing this with "make"?
Make is the time-honoured way to do this. You need to spend some time
mastering its syntax, but once you know how to use it, make is a very
powerful tool. There are alternatives to make, but they have their own
limitations and idiosyncrasies, in addition to being niche products.
c)Any thoughts on the limitations of the linker?
Unless you have some specific requirements you did not mention, rest
assured that for a project like yours (building a few executables from
a moderate number of source files) the Unix linkers have no
limitations.

--
Stefaan A Eeckels
--
"We have gone from a world of concentrated knowledge and wisdom to one
of distributed ignorance. And we know and understand less while being
increasingly capable." Prof. Peter Cochrane, formerly of BT Labs
(With thanks to Brian Hamilton Kelly)
Dec 28 '06 #6

Barry wrote:
"David T. Ashley" <dt*@e3ft.comwrote in message
news:nB*******************@fe178.usenetserver.com. ..
I have a large project on a Linux box that may eventually have several
hundred 'C' source files, which need to be compiled and linked into
several
executables.

Not all of the executables will use all of the files (i.e. there would be
no
linker references to some symbols).

The project will naturally be broken down into several or more
subdirectories.

Questions:

a)What is the best way in general to build? Compile all the .c files into
corresponding .o files, and then link the .o files explicitly?

b)Any thoughts on doing this with "make"?
Yes.

c)Any thoughts on the limitations of the linker?

Thanks.


Build tools are off topic for clc, but you could start by looking
at make. The last time some of the folks on this board tried to
respond to a questions about "make" several showed they had
noclue Best done by a search and use of your man pages.
What also tends to be revealed by make *questions* is that the
questioner has not read 'info make'[1], which should a first step to
any serious use of it.

[1] Online here: http://www.gnu.org/software/make/manual/make.html
>
<<OT>>
If you have a fully installed development environment you may
take a look at autoconf and automake. But, they come with
caveats with you should look at as well, which may lead you
to better tools.
<</OT>>
Dec 28 '06 #7
David T. Ashley wrote:
b)Any thoughts on doing this with "make"?
IMHO once any project grows to anything over one or two files,
using make is the only way to go.

Also if you take a little bit of time to understand make files:

http://www.zeusedit.com/forum/viewtopic.php?t=300

you'll find make is pretty easy to use.

Jussi Jumppanen
Author: Zeus for Windows
http:\\www.zeusedit.com

Dec 28 '06 #8
toby wrote:
What also tends to be revealed by make *questions* is that the
questioner has not read 'info make'[1], which should a first step to
any serious use of it.
Provided you have a specific reason to use GNU make. If not, then
reading some documentation that isn't GNU-specific might be a better
idea.

- Logan
Dec 29 '06 #9
ju****@zeusedit.com wrote:
Jussi Jumppanen
Author: Zeus for Windows
http:\\www.zeusedit.com
^^

I'm sure you meant to give a legal URI there...

- Logan
Dec 29 '06 #10
dc*****@connx.com wrote:
>
<OT>
Have you tried Eclipse and CDT?
http://www.eclipse.org/
http://www.eclipse.org/cdt/
</OT>
While I love, absolutely adore, using Eclipse for Java, my brief
encounter with CDT made me *run* back to the shelter of vim + make.

To be fair, I have put rather substantial effort into tuning my vim
environment for C coding in particular, making the
edit-compile-run-debug cycle much more pleasant than it might appear to
a newbie during his first years with the platform.
Dec 29 '06 #11
Logan Shaw wrote:
toby wrote:
>What also tends to be revealed by make *questions* is that the
questioner has not read 'info make'[1], which should a first step to
any serious use of it.

Provided you have a specific reason to use GNU make. If not, then
reading some documentation that isn't GNU-specific might be a better
idea.

- Logan
The OP did specify Linux, not that it necessarily indicates GNU make,
but it is a very safe bet.
Dec 29 '06 #12
Logan Shaw <ls**********@austin.rr.comwrote:
ju****@spamedit.com wrote:
Jussi Jumppanen
Author: Spam for Windows
http:\\www.spamedit.com
^^

I'm sure you meant to give a legal URI there...
I'm sure it just wanted to spam. (And apparently his product "is Y2K",
according to his FAQ. No, not Y2K-compatible; "Y2K". My confidence in
its excellence is not stellar.)

Richard
Dec 29 '06 #13

Logan Shaw wrote:
toby wrote:
What also tends to be revealed by make *questions* is that the
questioner has not read 'info make'[1], which should a first step to
any serious use of it.

Provided you have a specific reason to use GNU make. If not, then
reading some documentation that isn't GNU-specific might be a better
idea.
I'd go further and suggest they *should* use GNU make (and read that
manual). But as James says, it's the default 'make' on Linux and OS X
anyway (and bundled as 'gmake', Solaris 10).
>
- Logan
Dec 29 '06 #14
Richard Bos wrote:
Logan Shaw <ls**********@austin.rr.comwrote:
ju****@spamedit.com wrote:
Jussi Jumppanen
Author: Spam for Windows
http:\\www.spamedit.com
^^

I'm sure you meant to give a legal URI there...

I'm sure it just wanted to spam. (And apparently his product "is Y2K",
according to his FAQ. No, not Y2K-compatible; "Y2K". My confidence in
its excellence is not stellar.)
Mr. Jumppanen a well-known figure on many other programming and
compiler newsgroups. I think you've probably done him a disservice my
labeling him a spammer.


Brian
Dec 29 '06 #15

james of tucson wrote:
dc*****@connx.com wrote:

<OT>
Have you tried Eclipse and CDT?
http://www.eclipse.org/
http://www.eclipse.org/cdt/
</OT>

While I love, absolutely adore, using Eclipse for Java, my brief
encounter with CDT made me *run* back to the shelter of vim + make.
I avoid CDT's "Managed" mode, not because I have had a bad experience,
but because I prefer make myself - and CDT's "Standard" mode works
perfectly with ordinary makefiles. You even get an pretty outlining
Makefile editor.
>
To be fair, I have put rather substantial effort into tuning my vim
environment for C coding in particular, making the
edit-compile-run-debug cycle much more pleasant than it might appear to
a newbie during his first years with the platform.
Dec 29 '06 #16
David T. Ashley wrote:
I have a large project on a Linux box that may eventually have several
hundred 'C' source files, which need to be compiled and linked into several
executables.
b)Any thoughts on doing this with "make"?
Check out www.scons.org

Dec 29 '06 #17
"toby" <to**@telegraphics.com.auwrote in message
news:11*********************@h40g2000cwb.googlegro ups.com...
>
What also tends to be revealed by make *questions* is that the
questioner has not read 'info make'[1], which should a first step to
any serious use of it.
I'm very familiar with make. Just that I wanted to know:

a)Are there any limitations of make that will make it unsuitable for a very
large project?

b)Are there any better alternatives?

Thanks.

Dec 29 '06 #18

David T. Ashley wrote:
"toby" <to**@telegraphics.com.auwrote in message
news:11*********************@h40g2000cwb.googlegro ups.com...

What also tends to be revealed by make *questions* is that the
questioner has not read 'info make'[1], which should a first step to
any serious use of it.

I'm very familiar with make. Just that I wanted to know:

a)Are there any limitations of make that will make it unsuitable for a very
large project?
100 source files is not a large project.
>
b)Are there any better alternatives?

Thanks.
Dec 29 '06 #19
rl*@hoekstra-uitgeverij.nl (Richard Bos) writes:
Logan Shaw <ls**********@austin.rr.comwrote:
>ju****@spamedit.com wrote:
Jussi Jumppanen
Author: Spam for Windows
http:\\www.spamedit.com
^^

I'm sure you meant to give a legal URI there...

I'm sure it just wanted to spam. (And apparently his product "is Y2K",
according to his FAQ. No, not Y2K-compatible; "Y2K". My confidence in
its excellence is not stellar.)
The contents of signatures are not bound by topicality rules, and I
have no problem with advertisements there. But a signature should be
delimited by the standard "-- " line.

(If you're interested in the actual URL, go back to Jussi's article;
it was altered in followups. There is no "spamedit.com"; when I
Googled for "spamedit", it asked me if I meant "someidiot".)

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Dec 29 '06 #20
On Fri, 29 Dec 2006 13:19:57 -0500
"David T. Ashley" <dt*@e3ft.comwrote:
"toby" <to**@telegraphics.com.auwrote in message
news:11*********************@h40g2000cwb.googlegro ups.com...

What also tends to be revealed by make *questions* is that the
questioner has not read 'info make'[1], which should a first step to
any serious use of it.

I'm very familiar with make. Just that I wanted to know:

a)Are there any limitations of make that will make it unsuitable for
a very large project?
You are not familiar with make :)
b)Are there any better alternatives?
For certain values of better. Make is pretty good at what it does, but
it rubs many people the wrong way. As a result, many people have
developed alternatives. They are sometimes better. Mostly they are
worse. If you have a pet gripe with make, then _you_ should research
alternatives that don't have that particular issue.

--
Stefaan A Eeckels
--
Microsoft treats IT managers the way Proctor & Gamble treats
nine-year-old prospective consumers: lots of noise, bright colors, and
jumping around. Other software vendors just wish they could be so
successful. -- Cameron Laird in comp.lang.tcl
Dec 30 '06 #21
Stefaan A Eeckels wrote:
>
You are not familiar with make :)
make is that dog of a program dating back to at least the 1980's where
you specify targets, actions, and dependencies, right?

And there are some extra goodies thrown in so that modifying a makefile
is easier (i.e. configuration items in one place) and so that commands
like "make check", "make clean" etc. are possible?

Did I miss anything?

What makes you think I'm not familiar with make?

P.S.--I really didn't need to make this post. I'm just testing Mozilla
as a newsgroup reader. Microsoft Outlook Express seems to have some
annoying bugs. So, if anyone has recommendations ...
------------------------------------------------------------
David T. Ashley (dt*@e3ft.com)
http://www.e3ft.com (Consulting Home Page)
http://www.dtashley.com (Personal Home Page)
http://gpl.e3ft.com (GPL Publications and Projects)
Dec 30 '06 #22
"David T. Ashley" <dt*@e3ft.comwrites:
Stefaan A Eeckels wrote:
>>
You are not familiar with make :)

make is that dog of a program dating back to at least the 1980's where
you specify targets, actions, and dependencies, right?

And there are some extra goodies thrown in so that modifying a
makefile is easier (i.e. configuration items in one place) and so that
commands like "make check", "make clean" etc. are possible?

Did I miss anything?

What makes you think I'm not familiar with make?
Well, some familiarity with make would let you know that make is used
for most software projects, including the bigest open source ones. If
make is good enough for a ~24000-file Linux project or a ~42000-file
Mozilla project, what makes you think that it won't be good enough for
your 100-file software project?
--
__Pascal Bourguignon__ http://www.informatimago.com/

"Specifications are for the weak and timid!"
Dec 30 '06 #23
On Fri, 29 Dec 2006 13:19:57 -0500, in comp.lang.c , "David T. Ashley"
<dt*@e3ft.comwrote:
>I'm very familiar with make. Just that I wanted to know:

a)Are there any limitations of make that will make it unsuitable for a very
large project?
"make" isn't part of C, so in the context of CLC, this question is
essentially offtopic. However IME for large projects (say with a few
tens of libraries with interdependencies) you need something more
sophisticated.
>b)Are there any better alternatives?
yes. A general programming group can probably advise.
--
Mark McIntyre

"Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it."
--Brian Kernighan
Dec 30 '06 #24
Mark McIntyre <ma**********@spamcop.netwrites:
On Fri, 29 Dec 2006 13:19:57 -0500, in comp.lang.c , "David T. Ashley"
<dt*@e3ft.comwrote:
>>I'm very familiar with make. Just that I wanted to know:

a)Are there any limitations of make that will make it unsuitable for a very
large project?

"make" isn't part of C, so in the context of CLC, this question is
essentially offtopic. However IME for large projects (say with a few
tens of libraries with interdependencies) you need something more
sophisticated.
Yes -- but some of those more sophisticated solutions work on top of
"make". For example, there are systems that automatically generate a
Makefile from some higher-level description.
>>b)Are there any better alternatives?

yes. A general programming group can probably advise.
Such as comp.unix.programmer or, if you're not restricting yourself to
Unix-like systems, comp.programmer.

I see that this is already cross-posted to comp.unix.programmer, so
I'll redirect followups there.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Dec 30 '06 #25
"Default User" <de***********@yahoo.comwrote:
Richard Bos wrote:
Logan Shaw <ls**********@austin.rr.comwrote:
ju****@spamedit.com wrote:
Jussi Jumppanen
Author: Spam for Windows
http:\\www.spamedit.com
^^
I'm sure you meant to give a legal URI there...
I'm sure it just wanted to spam. (And apparently his product "is Y2K",
according to his FAQ. No, not Y2K-compatible; "Y2K". My confidence in
its excellence is not stellar.)

Mr. Jumppanen a well-known figure on many other programming and
compiler newsgroups. I think you've probably done him a disservice my
labeling him a spammer.
He may post the most worthwhile posts elsewhere, and in those groups he
will not be a spammer but a well-received contributor; but in
comp.lang.c, I've never seen him post anything else except
advertisements for his editor, as he's done twice recently.

Richard
Jan 3 '07 #26
Richard Bos wrote:
"Default User" <de***********@yahoo.comwrote:
Mr. Jumppanen a well-known figure on many other programming and
compiler newsgroups. I think you've probably done him a disservice
my labeling him a spammer.

He may post the most worthwhile posts elsewhere, and in those groups
he will not be a spammer but a well-received contributor; but in
comp.lang.c, I've never seen him post anything else except
advertisements for his editor, as he's done twice recently.
Did you fail to notice that this thread is cross-posted to
comp.unix.programmer?


Brian
Jan 3 '07 #27
On 3 Jan 2007 22:48:23 GMT, "Default User" <de***********@yahoo.com>
wrote:
>Richard Bos wrote:
>"Default User" <de***********@yahoo.comwrote:
Mr. Jumppanen a well-known figure on many other programming and
compiler newsgroups. I think you've probably done him a disservice
my labeling him a spammer.

He may post the most worthwhile posts elsewhere, and in those groups
he will not be a spammer but a well-received contributor; but in
comp.lang.c, I've never seen him post anything else except
advertisements for his editor, as he's done twice recently.

Did you fail to notice that this thread is cross-posted to
comp.unix.programmer?
Do you mean that it's OK to spam c.l.c. as long as you also spam
c.u.p.?

--
Al Balmer
Sun City, AZ
Jan 3 '07 #28
Al Balmer wrote:
On 3 Jan 2007 22:48:23 GMT, "Default User" <de***********@yahoo.com>
wrote:
Richard Bos wrote:
"Default User" <de***********@yahoo.comwrote:
Mr. Jumppanen a well-known figure on many other programming and
compiler newsgroups. I think you've probably done him a
disservice my labeling him a spammer.
>
He may post the most worthwhile posts elsewhere, and in those
groups >he will not be a spammer but a well-received contributor;
but in >comp.lang.c, I've never seen him post anything else except
advertisements for his editor, as he's done twice recently.
Did you fail to notice that this thread is cross-posted to
comp.unix.programmer?
Do you mean that it's OK to spam c.l.c. as long as you also spam
c.u.p.?

Richard was talking about what Jussi posted to clc. The point is that
likely he posted it to cup. I don't know if it's on-topic or not there,
I don't presume to speak for another group.

Personally, I don't believe he was guilty of spamming here either. He
answered the question with a reference to a forum thread, which is in
my opinion valid. The so-called "spam" consists of an improperly
demarcated signature. In no way did it seem to me like that was posted
as the answer to the question. Yes, Jussi needs to correct that and get
a proper delimiter for his signature, but no he didn't spam either
group.

I think Richard was way off-base. I think you're horning in without
really reviewing the situation. Anyone else I can slag while I'm at it?
Navia! It's all his fault, I'm sure.

Brian
Jan 4 '07 #29
Default User wrote:
Al Balmer wrote:
>"Default User" <de***********@yahoo.comwrote:
>>Richard Bos wrote:
"Default User" <de***********@yahoo.comwrote:

Mr. Jumppanen a well-known figure on many other programming
and compiler newsgroups. I think you've probably done him a
disservice my labeling him a spammer.
Your newsreader is seriously fouling the quoted material.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>
Jan 4 '07 #30
CBFalconer wrote:
Default User wrote:
Al Balmer wrote:
"Default User" <de***********@yahoo.comwrote:
Richard Bos wrote:
"Default User" <de***********@yahoo.comwrote:
>
Mr. Jumppanen a well-known figure on many other programming
and compiler newsgroups. I think you've probably done him a
disservice my labeling him a spammer.

Your newsreader is seriously fouling the quoted material.
That happens sometimes when the quotes get too deep.

Brian
Jan 4 '07 #31

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Johan Nilsson | last post by:
I've seen many alternatives when it comes to referring to types defined in parent/sibling/other namespaces. Consider the following hypothetical namespace layout: namespace company { namespace...
6
by: Peter Hickman | last post by:
I have a program that requires x strings all of y length. x will be in the range of 100-10000 whereas the strings will all be < 200 each. This does not need to be grown once it has been created....
4
by: Chris | last post by:
Where I work, we basically have 1 large ASP.NET application that we work on. This is compiled into one big DLL. I think it would be a good idea to somehow break up the project, so that if I...
10
by: jojobar | last post by:
Hello, I am trying to use vs.net 2005 to migrate a project originally in vs.net 2003. I started with creation of a "web site", and then created folders for each component of the site. I read...
6
by: Kevin Atherton | last post by:
Hello. I work for a large web company, and we are in the process of converting our old .asp pages to .aspx with VB code-behind. The solution includes 8 projects, all of which are very...
27
by: Rene | last post by:
I keep getting the following error every time I compile the solution under VS 2005: ---------------- Error 5 Unable to copy file "obj\Debug\xyz.dll" to "bin\Debug\xyz.dll". The process...
55
by: Steve | last post by:
I have to develop several large and complex C++ hardware test programs that should work under DOS, most likely with 32-bit DOS extender. Development workstation OS would be Microsoft XP. Quite some...
16
by: Rex | last post by:
Hi All - I have a question that I think MIGHT be of interest to a number of us developers. I am somewhat new to VIsual Studio 2005 but not new to VB. I am looking for ideas about quick and...
4
by: =?Utf-8?B?VzFsZDBuZTc0?= | last post by:
When one architects a new project one of the first steps in the decision is to decide on the layers. (In my opinion anyway) One architecture that I have used before is to go solid OO and create...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.