473,396 Members | 1,832 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.

LFS for Windows apps

What's the best inexpensive C compiler for Windows with large file
support (LFS)?

Preferably one where adding LFS to an EXE is as painless as possible.

I already have an old Borland compiler as well as gcc, but neither of
those seem to offer LFS.
Nov 15 '05 #1
11 1699
On Sun, 10 Jul 2005 19:21:57 -0400, Mr. Travis
<mr******@special.nospam> wrote in comp.lang.c:
What's the best inexpensive C compiler for Windows with large file
support (LFS)?

Preferably one where adding LFS to an EXE is as painless as possible.

I already have an old Borland compiler as well as gcc, but neither of
those seem to offer LFS.


There is no such thing as "LFS" defined by the C language. If you
have questions about particular features that might or might not be
present in C implementations for a particular platform (Windows), you
need to ask in a group for that particular platform. It's off-topic
here because it's not a language issue.

Try news:comp.os.ms-windows.programmer.win32

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Nov 15 '05 #2
In article <on********************************@4ax.com>,
ja*******@spamcop.net says...
On Sun, 10 Jul 2005 19:21:57 -0400, Mr. Travis
<mr******@special.nospam> wrote in comp.lang.c:
What's the best inexpensive C compiler for Windows with large file
support (LFS)?

Preferably one where adding LFS to an EXE is as painless as possible.

I already have an old Borland compiler as well as gcc, but neither of
those seem to offer LFS.


There is no such thing as "LFS" defined by the C language. If you
have questions about particular features that might or might not be
present in C implementations for a particular platform (Windows), you
need to ask in a group for that particular platform. It's off-topic
here because it's not a language issue.

Try news:comp.os.ms-windows.programmer.win32


Large file support is a compiler (or at least a linker) issue, not an OS
issue. The issue arises regardless of the target platform.

In the time it took you to write that whiny complaint, you could have
composed an answer. You're clearly more interested in being an
OBSTRUCTIONIST ASSHOLE than engaging in constructive conversation.

PLONK
Nov 15 '05 #3
In article <da**********@pita.alt.net>,
Mr. Travis <mi**********@travserver.travdom> wrote:
In article <on********************************@4ax.com>,
ja*******@spamcop.net says...
On Sun, 10 Jul 2005 19:21:57 -0400, Mr. Travis
<mr******@special.nospam> wrote in comp.lang.c:
> What's the best inexpensive C compiler for Windows with large file
> support (LFS)?
>
> Preferably one where adding LFS to an EXE is as painless as possible.
>
> I already have an old Borland compiler as well as gcc, but neither of
> those seem to offer LFS.


There is no such thing as "LFS" defined by the C language. If you
have questions about particular features that might or might not be
present in C implementations for a particular platform (Windows), you
need to ask in a group for that particular platform. It's off-topic
here because it's not a language issue.

Try news:comp.os.ms-windows.programmer.win32


Large file support is a compiler (or at least a linker) issue, not an OS
issue. The issue arises regardless of the target platform.

In the time it took you to write that whiny complaint, you could have
composed an answer. You're clearly more interested in being an
OBSTRUCTIONIST ASSHOLE than engaging in constructive conversation.


You obviously don't understand comp.lang.c

Nov 15 '05 #4
"Mr." Travis wrote
(in article <da**********@pita.alt.net>):
In article <on********************************@4ax.com>,
ja*******@spamcop.net says...
On Sun, 10 Jul 2005 19:21:57 -0400, Mr. Travis
<mr******@special.nospam> wrote in comp.lang.c:
What's the best inexpensive C compiler for Windows with large file
support (LFS)?

Preferably one where adding LFS to an EXE is as painless as possible.

I already have an old Borland compiler as well as gcc, but neither of
those seem to offer LFS.
There is no such thing as "LFS" defined by the C language. If you
have questions about particular features that might or might not be
present in C implementations for a particular platform (Windows), you
need to ask in a group for that particular platform. It's off-topic
here because it's not a language issue.

Try news:comp.os.ms-windows.programmer.win32


Large file support is a compiler (or at least a linker) issue, not an OS
issue. The issue arises regardless of the target platform.


Only in the sense that no matter what the limit for file size
is, it's theoretically possible to try to create a file larger
than that supported. Even if you had 256-bit file offsets, you
could still (in theory) create a file larger than that.

But, in the real world, quite a few platforms support 64-bit
offsets natively. It is much more a file system issue than a
compiler issue. "LFS" never comes up on many of them. For
example, 64-bit Linux does not require anything special, but
32-bit Linux does. None of this has anything to do with c.l.c,
which is why Jack said to try another group. In fact, support
for "large files" is already in Windows, just not using standard
APIs, which are also off topic here.
In the time it took you to write that whiny complaint, you could have
composed an answer.
What makes you think Jack (or anyone else) automatically knows
the right answer? more importantly, in a newsgroup where a
reasonable percentage of the readers do not know (i.e. in a
group where the subject is off-topic), and incorrect response is
much less likely to be caught be the regulars. That is why it
is important to ask the question in an appropriate group, so
that you get the best results and do not receive incorrect or
misleading information.
You're clearly more interested in being an
OBSTRUCTIONIST ASSHOLE than engaging in constructive conversation.

PLONK


Here's a free clue: Klein is now in one killfile, you will
probably be in dozens by the end of the day.
--
Randy Howard (2reply remove FOOBAR)

Nov 15 '05 #5
Mr. Travis wrote:
Large file support is a compiler (or at least a linker) issue, not an OS
issue. The issue arises regardless of the target platform.
It's one of the most false assumptions. File size limit so large file
support *depends* on the operating system and the file system in use,
and it's really simple to understand.

Since I feel good today (*), I will tell you where to seek.

Here's your windows-only pointer: http://tinyurl.com/2ozuo

If you're interested in learning something from who knows more than you,
just googling for ``file system limit'' would suffice, and of course,
wikipedia:

http://en.wikipedia.org/wiki/Comparison_of_file_systems

There you'll know how to deal with file system limitations, inherently
platform-dependent. You would have known just looking on the wikipedia
http://en.wikipedia.org/wiki/Large_File_Support --- the limits depend on
your OS, as pointed out by the link on lfs on wiki:

``To support writing portable code that makes use of LFS where possible,
C standard library authors devised mechanisms that, depending on
preprocessor constants, transparently redefined the functions to the
64-bit large file aware ones.''

Anyway, I don't think you'll EVER deal with FS limits on NTFS and other
file systems.
In the time it took you to write that whiny complaint, you could have
composed an answer. You're clearly more interested in being an
OBSTRUCTIONIST ASSHOLE than engaging in constructive conversation.

PLONK


(*) Telling someone he's an asshole for pointing you to the right place
to ask, denotes you're stupid. He knows you're on windows, since you
posted about EXE, which are JUST ON MS PLATFORMS (and os/2 but probably
you don't know), and of course, you're using MicroPlanet Gravity, which
is on MS platforms.

Be kind, if you're not a stupid person, you understand what I mean.
Nov 15 '05 #6
"Mr. Travis" wrote:
ja*******@spamcop.net says...

.... snip ...

There is no such thing as "LFS" defined by the C language. If
you have questions about particular features that might or might
not be present in C implementations for a particular platform
(Windows), you need to ask in a group for that particular
platform. It's off-topic here because it's not a language issue.

Try news:comp.os.ms-windows.programmer.win32


Large file support is a compiler (or at least a linker) issue, not
an OS issue. The issue arises regardless of the target platform.

In the time it took you to write that whiny complaint, you could
have composed an answer. You're clearly more interested in being an
OBSTRUCTIONIST ASSHOLE than engaging in constructive conversation.

PLONK


You being a bovaristic, excerebrose, wlatsome, xylocephalous,
yirning zoophyte who is unable to recognize assistance when
offered, will not be seen here again. PLONK.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
Nov 15 '05 #7
On Mon, 11 Jul 2005 19:43:18 -0400, in comp.lang.c , Mr. Travis
<mi**********@travserver.travdom> wrote:
In article <on********************************@4ax.com>,
ja*******@spamcop.net says...
On Sun, 10 Jul 2005 19:21:57 -0400, Mr. Travis
<mr******@special.nospam> wrote in comp.lang.c:
> What's the best inexpensive C compiler for Windows with large file
> support (LFS)?
There is no such thing as "LFS" defined by the C language. If you
have questions about particular features that might or might not be
present in C implementations for a particular platform (Windows),

Try news:comp.os.ms-windows.programmer.win32


Large file support is a compiler (or at least a linker) issue, not an OS
issue. The issue arises regardless of the target platform.


Its also language-independent, and nothing to do with the C language.
In the time it took you to write that whiny complaint, you could have
composed an answer.
He did. See the bits above.
You're clearly more interested in being an
OBSTRUCTIONIST ASSHOLE than engaging in constructive conversation.
Jack did the right thing - ie redirect you to somewhere more
appropriate. Its hardly his fault if you don't like the answer.
PLONK


Your loss, not Jack's.
Generally its considered a bad idea to plonk the regulars, typically
you get less not more help.

--
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.ungerhu.com/jxh/clc.welcome.txt>

----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Nov 15 '05 #8
Mr. Travis wrote:
In article <on********************************@4ax.com>,
ja*******@spamcop.net says...
On Sun, 10 Jul 2005 19:21:57 -0400, Mr. Travis
<mr******@special.nospam> wrote in comp.lang.c:
What's the best inexpensive C compiler for Windows with large file
support (LFS)?
.....
Try news:comp.os.ms-windows.programmer.win32


Large file support is a compiler (or at least a linker) issue, not an OS
issue. The issue arises regardless of the target platform.

In the time it took you to write that whiny complaint, you could have
composed an answer. You're clearly more interested in being an
OBSTRUCTIONIST ASSHOLE than engaging in constructive conversation.

PLONK


Sadly, an asshole has been detected in comp.lang.c. Yep, it's you.
Responding in such a way to a polite redirection wins no points with
anyone. You were asking for help, Mr. Klein gave useful information.
Judging by your response, that was more than you deserved.

-David

Nov 15 '05 #9
In article <11********************@g14g2000cwa.googlegroups.c om>,
David Resnick <ln********@gmail.com> wrote:
Mr. Travis wrote:
In article <on********************************@4ax.com>,
ja*******@spamcop.net says...
> On Sun, 10 Jul 2005 19:21:57 -0400, Mr. Travis
> <mr******@special.nospam> wrote in comp.lang.c:
>
> > What's the best inexpensive C compiler for Windows with large file
> > support (LFS)?
> >.... >
> Try news:comp.os.ms-windows.programmer.win32


Large file support is a compiler (or at least a linker) issue, not an OS
issue. The issue arises regardless of the target platform.

In the time it took you to write that whiny complaint, you could have
composed an answer. You're clearly more interested in being an
OBSTRUCTIONIST ASSHOLE than engaging in constructive conversation.

PLONK


Sadly, an asshole has been detected in comp.lang.c. Yep, it's you.
Responding in such a way to a polite redirection wins no points with
anyone. You were asking for help, Mr. Klein gave useful information.
Judging by your response, that was more than you deserved.


He got exactly what he came for. And all is well with the world.

(You don't, for even a second, think that the original post wasn't obvious
trolling, do you?)

Nov 15 '05 #10
> Kenny McCormack wrote:
He got exactly what he came for. And all is well with the world.

(You don't, for even a second, think that the original post wasn't obvious
trolling, do you?)


It is sometimes hard for me to distinguish on first post troll
from clueless and belligerent. "Mr. Travis" has no history, so it
is difficult to be sure what is up with him.

-David

Nov 15 '05 #11
In article <11**********************@g47g2000cwa.googlegroups .com>,
David Resnick <ln********@gmail.com> wrote:
Kenny McCormack wrote:

He got exactly what he came for. And all is well with the world.

(You don't, for even a second, think that the original post wasn't obvious
trolling, do you?)


It is sometimes hard for me to distinguish on first post troll
from clueless and belligerent. "Mr. Travis" has no history, so it
is difficult to be sure what is up with him.


I think by this point, we should assume that the honchos at trollsRUs know
what it takes (that is, how easy it is) to jerk people's chains in clc.

Following the standard and good advice that most of us learned at our
mother's knees, I think we'd do a lot better to just ignore the troll posts
than to play along with them.

(And, in case this isn't clear, to assume that this c**p is trolling not
cluelessness, unless/until shown otherwise)

Nov 15 '05 #12

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

Similar topics

35
by: Michael Kearns | last post by:
I've been using python to write a simple 'launcher' for one of our Java applications for quite a while now. I recently updated it to use python 2.4, and all seemed well. Today, one of my...
11
by: Wolfgang Kaml | last post by:
Hello All, I have been working on this for almost a week now and I haven't anything up my sleeves anymore that I could test in addition or change.... Since I am not sure, if this is a Windows...
3
by: Brad Simon | last post by:
My Client asked me to put together some reasons as to what determines if an application would be developed as a windows application or web application. I have started working on it, but I would like...
7
by: Antony | last post by:
Excuse my ignorance, but anyone have any links to some good white papers discussing the pros/cons for developing a Web-Based app versus a windows/client/server app? I would think this topic has...
8
by: Bf | last post by:
I was creating test projects using c# and was surprised that there seems to be only a form based windows applications available. Is it safe to assume that classic window applications that utilize a...
3
by: chicken butt | last post by:
Hi - I am trying to move some of my web apps from my development machine running XP PRO SP2 to one of our Windows 2000 server boxes. I have created a new site for each of the apps and am using...
2
by: Jeff | last post by:
Please note this is NOT a rant or complaint! And yes, I'm over-simplifying, but intentionally. Here goes... With ASP.NET Web applications I like that I can access data from anywhere without...
3
by: dcbud | last post by:
I'm hoping to get a response from developers with experience in both developing applications for Windows and the Web using VS.NET2005. I'm looking for input as to why we would want to develop a web...
16
by: Daniela Roman | last post by:
Hello, can someone tell me the main differences between the web and windows based applications? thank you
4
by: Hrsoft | last post by:
Dear Friends My developer environmment has a Windows 2000 SP4 Server, and I canīt to update to 2003 or 2008, for reasons of... money. But, I need to install in this 2000 Server SP4 the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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
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
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.