Non-API changes I'd like to see in SDL 2.0

Along side my study of API Usability (please check out my other post
about this and help me to help make SDL better!), I have some views on
things that I feel need to be changed…

  1. No CMake or other Make front-ends.

There is no substitute for the Make manual, that is to say, RTFM and
understanding how Make works allows you to write Makefiles that do
exactly what you want them to do. Using a front-end like CMake is a
distraction; you have to learn CMake AND Make (to understand problems
when they occur).

Granted, CMake does have some useful features, such as generating
project files for other IDEs, but the thing is, you have to manually
test the output of CMake before you release the files, so you may as
well just maintain the project files manually and skip the additional
dependency.

  1. No Libtool.

Libtool is brain-damaged. Sorry. The objective of libtool is laudable
and it may actually have been useful at some point in the past, however,
it is my strongly-held view that it is not possible to adequately
abstract something as fundamentally system-dependant as library management.

Basically, every system has different methods and conventions for using
dynamic libraries, some of which are fundamentally different. It is my
view that the library binary should conform to the conventions of the
underlying system, NOT some idea of ‘how it should be done on every
platform’.

  1. Lib binary should be libSDL.so.2 on Linux SDL2.dll on Windows.

This follows from point 2; each OS has its own conventions, Library
management is FUNDAMENTALLY different on Linux and Windows. Windows
struggles to manage different versions of dlls, Linux does it elegantly
(as long as you stick to the conventions set out in the HOWTO -
http://tldp.org/HOWTO/Program-Library-HOWTO/)

I feel that it is more important to be consistent with the underlying OS
than to attempt to be consistent about something that simply cannot be
consistent no matter how hard you try. Indeed, this is something that
you Just Have To Live With when working on many platforms; when using
dynamic libraries, you have to pass different filenames to dlopen() or
its equivalent.

  1. Proper API Specification

This isn’t strictly related to the work I’m doing on API Usability,
but is, fortunately, something that my work will hopefully correct - I
believe, strongly, that SDL CAN join OpenGL as a de-facto standard for
doing the job it does. However, in order to do this, it must be clearly
defined. I feel that properly defining the API will help in this, as it
will allow others to write implementations,

For example, a company might want to use the reference implementation to
develop on a desktop, but may need a non-(L)GPL implementation for its
embedded product. Having a clear, open definition of the API would
facilitate this.

  1. ABI Specification(s)

Related to 4; a product developer may want to expose their own
implementation of SDL, a clear ABI specification would be necessary to
facilitate this, as is done with OpenGL…

Lots of Love!

Eddy

Along side my study of API Usability (please check out my other post
about this and help me to help make SDL better!), I have some views on
things that I feel need to be changed…

I am very glad to see that you want to make SDL better. First off, please
define better. Seriously, until you define the term “better” you have no
idea what you need to do to make it better.

AFAICT from reading your post you have been listening to your professors and
reading your books but you lack the experience and historical knowledge to
understand that you do not understand what you think you have learned :slight_smile:
But, don’t worry about it very much, few if any of your professors
understand what they think they are teaching.

Do I sound arrogant? Yes I do. Sorry about that. Please do not take any of
what I am about to say personally.

  1. No CMake or other Make front-ends.

There is no substitute for the Make manual, that is to say, RTFM and
understanding how Make works allows you to write Makefiles that do
exactly what you want them to do. Using a front-end like CMake is a
distraction; you have to learn CMake AND Make (to understand problems
when they occur).

Granted, CMake does have some useful features, such as generating
project files for other IDEs, but the thing is, you have to manually
test the output of CMake before you release the files, so you may as
well just maintain the project files manually and skip the additional
dependency.

This is your opinion and I am sure that you can find people who agree with
it. OTOH, I am sure you can find people who disagree with it. Seriously, the
choice to use a build tool is personal and directly related to your needs.
Try building the X server without using the build system provided for it.

Have you ever managed a code base larger than 100KLOCs/ (KLOC == Kilo Lines
Of Code.) Try managing a multi-MLOC project with just make. Oh my.

  1. No Libtool.

Libtool is brain-damaged. Sorry. The objective of libtool is laudable
and it may actually have been useful at some point in the past, however,
it is my strongly-held view that it is not possible to adequately
abstract something as fundamentally system-dependant as library
management.

Basically, every system has different methods and conventions for using
dynamic libraries, some of which are fundamentally different. It is my
view that the library binary should conform to the conventions of the
underlying system, NOT some idea of ‘how it should be done on every
platform’.

Same comment as above.

  1. Lib binary should be libSDL.so.2 on Linux SDL2.dll on Windows.

This follows from point 2; each OS has its own conventions, Library
management is FUNDAMENTALLY different on Linux and Windows. Windows
struggles to manage different versions of dlls, Linux does it elegantly
(as long as you stick to the conventions set out in the HOWTO -
http://tldp.org/HOWTO/Program-Library-HOWTO/)

I feel that it is more important to be consistent with the underlying OS
than to attempt to be consistent about something that simply cannot be
consistent no matter how hard you try. Indeed, this is something that
you Just Have To Live With when working on many platforms; when using
dynamic libraries, you have to pass different filenames to dlopen() or
its equivalent.

I’m sure your suggestion will be noted. I take it you do not have an opinion
on what they should be called on Mac OS, or any of the many many other OSes
supported by SDL? Anywayt Sam will pick the names based on Sam’s opinion of
what they should be. Please note that Sam is one hell of fine programmer
with experience that is both broad and deep on all three major OSes.

  1. Proper API Specification

This isn’t strictly related to the work I’m doing on API Usability,
but is, fortunately, something that my work will hopefully correct - I
believe, strongly, that SDL CAN join OpenGL as a de-facto standard for
doing the job it does. However, in order to do this, it must be clearly
defined. I feel that properly defining the API will help in this, as it
will allow others to write implementations,

For example, a company might want to use the reference implementation to
develop on a desktop, but may need a non-(L)GPL implementation for its
embedded product. Having a clear, open definition of the API would
facilitate this.

Again, please define the term “proper”. I do not think you know what an API
specification is or the purpose of an API specification. Anyway, SDL has the
best possible API specification, the working code that can be downloaded and
examined by anyone who wants to. No other API specification has any real
meaning. Here is something to learn and understand, dare I say “grok”?
Documents lie. Human language is inexact. Code does not lie. Use the source,
Luke.

Not to mention that the specification is still evolving. The theory behind
written formal interface specifications is that you can write an interface
in English (or any other human language) and know what it means in terms of
working code. But, you can’t. The only specification that is even vaguely
unambiguous is working source code in a relatively well understood language.
The only way to evaluate the specification is to use it.

  1. ABI Specification(s)

Related to 4; a product developer may want to expose their own
implementation of SDL, a clear ABI specification would be necessary to
facilitate this, as is done with OpenGL…

Ahh crap… There is no need for an ABI specification. Given the C function
call interface, i.e. the .h files for SDL and the linkage rules for your
favorite C compiler you have the ABI for SDL. The ABI for a library
changes every time the compiler changes its linkage interface. If you
look at the .h files for SDL you will find that it already uses very
specific types when they are needed and generic types when they are not.

You mentioned OpenGL. Do you have any idea how many years experimentation
and user experience went into GL before there was version 1.0 of OpenGL? Do
you understand the business and political reasons that went into opening GL?
Did you ever look at the initial public release of OpenGL? By that I mean
the code and the documentation? You need to get some historical insight into
what you are talking about.

Lots of Love!

I can tell that you mean well and that you are dedicated to helping SDL be
better. If you really want to help please down load the 1.3 source, build
it, test it, report bugs you find, and do some serious coding with it before
you try to tell people how to run the project.

Before I decided to get seriously involved in the SDL project I spent
several months writing test programs just to make sure that I understood the
project well enough to have an opinion. That is a after reading the
available documentation from all sources and reading all the .h files. You
might want to do the same thing with 1.3.

Eddy

Bob PendletonOn 3/10/08, Edward Cullen wrote:


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

±-------------------------------------+

Bob Pendleton wrote:

Along side my study of API Usability (please check out my other post
about this and help me to help make SDL better!), I have some views on
things that I feel need to be changed...

I am very glad to see that you want to make SDL better. First off,
please define better. Seriously, until you define the term “better” you
have no idea what you need to do to make it better.

If you took the time to read the post I was referring to, you would see
that by ‘better’ I mean empirically provable that the APIs are easier to
use.

AFAICT from reading your post you have been listening to your professors
and reading your books but you lack the experience and historical
knowledge to understand that you do not understand what you think you
have learned :slight_smile: But, don’t worry about it very much, few if any of your
professors understand what they think they are teaching.

shrug I’m sorry that you feel that way, as you are, quite simply, wrong.

As well as being a university undergraduate - at one of the top
universities for Computer Science in the world; one of two places that
Tim Berners-Lee holds a chair (the other being MIT), the university
rated 3rd in THE WORLD for citations of its research (after MIT and
CalTech), an institution where many of the academics have spent MANY
years in industry, before going into research - get the idea?

As well as being an undergraduate, I also work for a small consumer
electronics company that you may have heard of - Sony - and have done so
for over a year. I am, therefore, rubbing shoulders with VERY
experienced, professional and all-round great Software Engineers, who
are more than happy to discuss the ideas I have and share their
experience and expertise with me.

Do I sound arrogant? Yes I do. Sorry about that. Please do not take any
of what I am about to say personally.

More like condescending…

1. No CMake or other Make front-ends.

There is no substitute for the Make manual, that is to say, RTFM and
understanding how Make works allows you to write Makefiles that do
exactly what you want them to do. Using a front-end like CMake is a
distraction; you have to learn CMake AND Make (to understand problems
when they occur).

Granted, CMake does have some useful features, such as generating
project files for other IDEs, but the thing is, you have to manually
test the output of CMake before you release the files, so you may as
well just maintain the project files manually and skip the additional
dependency.

This is your opinion and I am sure that you can find people who agree
with it. OTOH, I am sure you can find people who disagree with it.
Seriously, the choice to use a build tool is personal and directly
related to your needs. Try building the X server without using the build
system provided for it.

Have you ever managed a code base larger than 100KLOCs/ (KLOC == Kilo
Lines Of Code.) Try managing a multi-MLOC project with just make. Oh my.

The Linux kernel seems to do okay, that’s managed with Make.

As is the code I work on at Sony for that matter. Make seems to do the
job there too.

Granted both have the odd helper script, but they are exactly that -
helpers, the builds themselves are managed by make.

The point I was trying to make (no pun!), was that if you understand how
to use Make and structure your project correctly, managing with 'raw’
Make is no more difficult than using any other build system.

It is my opinion that the reason people ‘struggle’ with or 'dislike’
Make, is that they begin using it without fully understanding it and as
their project grows (and their experience with Make), they find that it
is very difficult or just too time consuming to refactor the build
system into something they deem satisfactory.

I strongly disagree that the choice of build tool is a 'personal’
preference. If you wish to distribute source code widely, then you have
to be very careful about how you package it and what dependencies you
impose on the end user - not everyone who might build SDL is a developer
and therefore may not be confident manually resolving all the dependencies.

2. No Libtool.

Libtool is brain-damaged. Sorry. The objective of libtool is laudable
and it may actually have been useful at some point in the past, however,
it is my strongly-held view that it is not possible to adequately
abstract something as fundamentally system-dependant as library
management.

Basically, every system has different methods and conventions for using
dynamic libraries, some of which are fundamentally different. It is my
view that the library binary should conform to the conventions of the
underlying system, NOT some idea of 'how it should be done on every
platform'.

Same comment as above.

So, does that mean you like Libtool or not? Do you agree or disagree
that Libtool is useful?

3. Lib binary should be libSDL.so.2 on Linux SDL2.dll on Windows.

This follows from point 2; each OS has its own conventions, Library
management is FUNDAMENTALLY different on Linux and Windows. Windows
struggles to manage different versions of dlls, Linux does it elegantly
(as long as you stick to the conventions set out in the HOWTO -
http://tldp.org/HOWTO/Program-Library-HOWTO/)

I feel that it is more important to be consistent with the underlying OS
than to attempt to be consistent about something that simply cannot be
consistent no matter how hard you try. Indeed, this is something that
you Just Have To Live With when working on many platforms; when using
dynamic libraries, you have to pass different filenames to dlopen() or
its equivalent.

I’m sure your suggestion will be noted. I take it you do not have an
opinion on what they should be called on Mac OS, or any of the many many
other OSes supported by SDL?

No, because I don’t use MacOS and don’t understand how it handles
dynamic libraries. I DO use Windows and Linux. I DO understand how THEY
use dynamic libraries. I DO understand that each OS handles dynamic
libraries differently. There are so many OSes, so many different ways of
handling dynamic libraries, that you can’t adequately define a generic
way of handling them, so rather than trying and ending up with something
half-arsed, I am of the OPINION that it is better to keep it simple and
clear by saying ‘sorry, but you just have to learn how that target OS
handles libraries’. Kinda along the lines of that classic prayer (sorry,
my Dad was really religious; sometimes these things just rub off on you…)

Give me the serenity to accept the things I can't change,
The courage to change the things I can,
And the wisdom to know the difference.

Anywayt Sam will pick the names based on Sam’s opinion of what they should be.

No Shit Sherlock? But you know, he may just listen to what other people
think and he might decide that, actually, that would be a better way of
doing things, I’ll give it a go. But if no one ever suggested different
ways of doing things, then, he wouldn’t have that choice, would he?

Please note that Sam is one hell of fine programmer with experience that is
both broad and deep on all three major OSes.

Did I say that he wasn’t? Infact, if you took the time to read my post
about API usability, you will not that I acknowledge his (and Ryan’s)
experience / expertise in a very clear, unambiguous way… I’ll quote it
for you:

“I am NOT interested in the capabilities of SDL - this is a question for
Sam and Ryan, who, as professional game developers, are in a MUCH better
position to judge what is and is not necessary.”

Is that kissy-arse enough for you? Personally, I don’t think either Sam
or Ryan give a damn what you or I think about them; you don’t become
successful by being bothered in that way.

4. Proper API Specification

This isn't strictly related to the work I'm doing on API Usability,
but is, fortunately, something that my work will hopefully correct - I
believe, strongly, that SDL CAN join OpenGL as a de-facto standard for
doing the job it does. However, in order to do this, it must be clearly
defined. I feel that properly defining the API will help in this, as it
will allow others to write implementations,

For example, a company might want to use the reference implementation to
develop on a desktop, but may need a non-(L)GPL implementation for its
embedded product. Having a clear, open definition of the API would
facilitate this.

Again, please define the term “proper”. I do not think you know what an
API specification is or the purpose of an API specification. Anyway, SDL
has the best possible API specification, the working code that can be
downloaded and examined by anyone who wants to. No other API
specification has any real meaning. Here is something to learn and
understand, dare I say “grok”? Documents lie. Human language is inexact.
Code does not lie. Use the source, Luke.

Sigh A ‘proper’ specification, is a written document that is entirely
self-contained, defining clearly what the APIs are, what their
behaviours should be, how errors are defined/handled and what errors are
produced - everything a developer would need in order to implement a
conformant implementation.

Did you actually read the example I gave? Where the question was about
keeping a second implementation (L)GPL free. If you don’t understand
that, you need to brush up your copyright knowledge - If I copy from a
(L)GPL header into my own source, then I am using (L)GPL code.
therefore, my implementation is (L)GPL. I’m actually quit angry now,
because you seem to have decided that ‘because I’m a student, I don’t
know what I’m on about’, yet you haven’t really done a lot to
demonstrate that you understand what I have tried to say or that you
have even read my post properly before replying to it.

You may wish to lookup ‘clean room design’ for some ‘historical
perspective’.

Not to mention that the specification is still evolving. The theory
behind written formal interface specifications is that you can write an
interface in English (or any other human language) and know what it
means in terms of working code. But, you can’t. The only specification
that is even vaguely unambiguous is working source code in a relatively
well understood language. The only way to evaluate the specification is
to use it.

Now who’s not understanding what’s going on?

OpenGL is defined in a standards document. C, C++, C# etc, etc, etc are
defined in standards documents. It is possible. It has been proven
REPEATEDLY that it is possible.

5. ABI Specification(s)

Related to 4; a product developer may want to expose their own
implementation of SDL, a clear ABI specification would be necessary to
facilitate this, as is done with OpenGL...

Ahh crap… There is no need for an ABI specification. Given the C
function call interface, i.e. the .h files for SDL and the linkage rules
for your favorite C compiler you have the ABI for SDL. The ABI for a
library changes every time the compiler changes its linkage interface.
If you look at the .h files for SDL you will find that it already
uses very specific types when they are needed and generic types when
they are not.

Um, do you actually understand WHAT an ABI is and how it works? OpenGL
has an ABI. That is why nVidia, ATI or whoever can write their own
implementation and I can then link dynamically to an ATI implementation
at compile time and (assuming same platform etc) move that binary to an
nVidia implementation and it will ‘just work’.

To be fair, you’re right, there IS no need to define ABI(s) - UNLESS you
want to make SDL as popular/widespread/supported as OpenGL… which is
exactly what I want to do.

You mentioned OpenGL. Do you have any idea how many years
experimentation and user experience went into GL before there was
version 1.0 of OpenGL? Do you understand the business and political
reasons that went into opening GL? Did you ever look at the initial
public release of OpenGL? By that I mean the code and the documentation?
You need to get some historical insight into what you are talking about.

I really don’t know what to say to that… especially as you’re
comparing apples and oranges; GL was a PROPRIETARY, CLOSED SOURCE,
graphics programming language. OpenGL was simply a marketing trick; a
way of selling SGI workstations (because they were the only thing that
could actually do OpenGL properly at the time), without making people
feel ‘tied’ to SGI (The Illusion of Choice).

Going from SDL to ‘OpenSDL’ isn’t anything like the same. I even feel
bad pre-pending ‘Open’ to the front, because SDL IS ALREADY OPEN, it’s
just not as rigorously defined as OpenGL or other standards. There are
no business or political reasoning behind wanting to make SDL more
popular; all reasons are purely personal; sense of professional pride,
accomplishment, amongst others. I don’t know (care?) what Sam and Ryan’s
motivations are, but they seem to care about SDL - I care about it too.

Lots of Love!

I can tell that you mean well and that you are dedicated to helping SDL
be better. If you really want to help please down load the 1.3 source,
build it, test it, report bugs you find, and do some serious coding with
it before you try to tell people how to run the project.

? Was the title of my post “Things that Have to Change in SDL 2.0”?
Um… no, it wasn’t, it was “Non-API changes I’d like to see in SDL 2.0”

Don’t know about you, but where I’m from, the work ‘like’ tends to
indicate a preference, not a demand or dictat.

Sorry Bob, you said at the top that you didn’t want to make this
personal, but the thing is, that’s exactly what you’ve done; you’ve made
it about what you think I know, not about the merits of my
comments/suggestions. Here’s a tip for you Bob: never write “Don’t take
this personally.” in anything, as if you are, it clearly IS personal!

I apologise to other users of the group if I seem somewhat vitriolic,
but you must understand that I do NOT suffer unjustified personal
attacks; treat me with dignity and respect and I will do the same to
you; attack me for ‘being something’ rather than what I say, and you can
expect a robust response.

FYI, I’m 27 years old and have ‘been around’ in many different
professional environments (some more-so than others!). When I started
working at Sony as a contractor, I was offered a permanent position
within 4 weeks of starting and I HAD TO EXPLAIN TO MY BOSS THAT I WAS
STILL A STUDENT! I’m no mug; I am CERTAINLY no child and resent anyone
who would patronise me or speak to me in a condescending manner.

If anyone has any comments on the substance of my original post, then
please do let me know.

Regards,

Eddy> On 3/10/08, Edward Cullen <eac203 at ecs.soton.ac.uk <mailto:eac203 at ecs.soton.ac.uk>> wrote:

Edward Cullen wrote:

  1. No CMake or other Make front-ends.

I can’t stand CMake. I can’t stand Make either. However, if CMake
allows me to build SDL under Windows with Visual C++ 8.0 without
touching the IDE, then I’m in favor of it.

What I’d really like is a simple English description of how to build SDL
so I can use my own build system. Or a simple batch file. Or even a
simple nmake file.

English text > batch file > nmake file > CMake > IDE project file. GNU
Makefiles for gcc don’t count, since I’m not using gcc.

  1. Lib binary should be libSDL.so.2 on Linux SDL2.dll on Windows.

The Windows dll goes in the same directory as the executable, because
that’s the only sane way to deal with dynamic libraries. The name
doesn;t matter, since any single project will only use one version of
SDL. The Linux shared object /also/ goes in the same directory as the
executable, because that’s the only sane way to deal with dynamic
libraries /even on Linux/. A fancy versioning system won’t save you
when you need a custom build for one project and a different custom
build for another project and a core modification for a third project.

Call it OpenGL.txt for all I care. Just make sure it works.–
Rainer Deyke - rainerd at eldwood.com

There is no substitute for the Make manual, that is to say, RTFM and
understanding how Make works allows you to write Makefiles that do
exactly what you want them to do. Using a front-end like CMake is a
distraction; you have to learn CMake AND Make (to understand problems
when they occur).

I’m not advocating any specific change here, but it does bother me
that we have like 18 million different project files to
maintain…Visual Studio, Xcode, the autoconf stuff, etc. There’s a lot
I don’t like about CMake, but I do like that you can target lots of
non-Unix build systems with it.

If they continue to improve it, port it, and add more build targets, I
think it could be a real winner for most projects.

–ryan.

Bloody, steam powered web mail that Kingston have proberbly farmed out to
some Bangladesh sweat shop.
-Chris

BTW - Have you any idea what it means when your air-bag light keeps
flashing? my manual doesn’t cover it but I suspect it probebly means that
it’s not happy.

Original Message:-----------------
From: Ryan C. Gordon icculus@icculus.org
Date: Tue, 11 Mar 2008 06:59:24 -0400
To: sdl at lists.libsdl.org
Subject: Re: [SDL] Non-API changes I’d like to see in SDL 2.0

There is no substitute for the Make manual, that is to say, RTFM and
understanding how Make works allows you to write Makefiles that do
exactly what you want them to do. Using a front-end like CMake is a
distraction; you have to learn CMake AND Make (to understand problems
when they occur).

I’m not advocating any specific change here, but it does bother me
that we have like 18 million different project files to
maintain…Visual Studio, Xcode, the autoconf stuff, etc. There’s a lot
I don’t like about CMake, but I do like that you can target lots of
non-Unix build systems with it.

If they continue to improve it, port it, and add more build targets, I
think it could be a real winner for most projects.

–ryan.


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


mail2web.com ? Enhanced email for the mobile individual based on Microsoft?
Exchange - http://link.mail2web.com/Personal/EnhancedEmail

  1. No CMake or other Make front-ends.

Using a make front end is not planned at this point. Maintaining the
various projects is a pain, but there are some advantages like having a
configuration on Windows that doesn’t require C runtime, having a build
target that takes care of creating a DMG with custom background image, etc.

You’re also always free to create your own Makefile for your own needs,
as has been done for some of the enbedded platforms.

  1. No Libtool.

Heheh, I actually tried to ditch libtool early in SDL 1.3 development
and the scripts I ended up writing were just as messy and hard to maintain
as libtool itself. libtool is a known quantity for the package maintainers
for various operating systems, so I ended up keeping that and ditching
automake instead.

  1. Lib binary should be libSDL.so.2 on Linux SDL2.dll on Windows.

See above.

Actually I hacked libtool to generate an unversioned SDL.dll on Windows
because that’s what Windows developers expect. The naming convention for
SDL 1.3/2.0 isn’t finalized at this point, but I expect to call it something
like SDL2.dll.

  1. Proper API Specification

SDL 1.3 has many of the headers converted over to doxygen friendly formatting.
Once the API is finalized and robustly tested I’ll probably put out a call to
create a formal API specification to someone with extensive standards experience.

  1. ABI Specification(s)

Related to 4; a product developer may want to expose their own
implementation of SDL, a clear ABI specification would be necessary to
facilitate this, as is done with OpenGL…

Interesting idea that I hadn’t considered. First things first though. :slight_smile:

See ya!
-Sam Lantinga, Lead Software Engineer, Blizzard Entertainment

chris_dobbs at dobbscr.karoo.co.uk wrote:

Bloody, steam powered web mail that Kingston have proberbly farmed out to
some Bangladesh sweat shop.
-Chris

BTW - Have you any idea what it means when your air-bag light keeps
flashing? my manual doesn’t cover it but I suspect it probebly means that
it’s not happy.

I’d probably recommend taking it into the repair shop.

Also, the web mail IT staff at the Bangladesh sweat shop are forwarding
your personal emails to the SDL mailing list.

–ryan.

  1. ABI Specification(s)

My I ask at this point, what ABI means?

TIA
NorbertAm Mon, 10 Mar 2008 13:56:01 +0000 schrieb Edward Cullen:

Application Binary Interface:
http://en.wikipedia.org/wiki/Application_binary_interfaceOn Tue, Mar 11, 2008 at 12:02 PM, Norbert Melzer <norbert.melzer at gmx.net> wrote:

Am Mon, 10 Mar 2008 13:56:01 +0000 schrieb Edward Cullen:

  1. ABI Specification(s)

My I ask at this point, what ABI means?

TIA
Norbert

  1. ABI Specification(s)

My I ask at this point, what ABI means?

Application Binary Interface. An stable ABI garantees binary
compatibillity between programms (and libraries).

regards …
clemensOn Tue, Mar 11, 2008 at 1:02 PM, Norbert Melzer <norbert.melzer at gmx.net> wrote:

I would be interested in knowing, what specific things do people
dislike (or ‘hate’ as some have put it) about CMake. This has been an
on-and-off topic on the CMake list itself, but it would be nice to get
some opinions from those who are already not self-selected enough to
be on the CMake list.

Thanks,
Eric

[…]

FYI, I’m 27 years old and have ‘been around’ in many different
professional environments (some more-so than others!). When I started
working at Sony as a contractor, I was offered a permanent position
within 4 weeks of starting and I HAD TO EXPLAIN TO MY BOSS THAT I WAS
STILL A STUDENT! I’m no mug; I am CERTAINLY no child and resent anyone
who would patronise me or speak to me in a condescending manner.

I don’t get you, Eddy. You whine like an Australian but you study like an
Italian. Graduate already! Many apologies to the mature-age students.

RFOn 3/11/08, Edward Cullen wrote:

[…]

FYI, I’m 27 years old and have ‘been around’ in many different
professional environments (some more-so than others!). When I started
working at Sony as a contractor, I was offered a permanent position
within 4 weeks of starting and I HAD TO EXPLAIN TO MY BOSS THAT I WAS
STILL A STUDENT! I’m no mug; I am CERTAINLY no child and resent anyone
who would patronise me or speak to me in a condescending manner.

I don’t get you, Eddy. You whine like an Australian but you study like an
Italian. Graduate already! Many apologies to the mature-age students.

RFOn 3/11/08, Edward Cullen wrote:

Ah yes, Sony, providers of the wonder that is SonicStage, and the fantastic anti-piracy system
that exposed Windows users to virus attack!

Many people on this list have been to top universities so please don’t start blowing your own trumpet,
or go do it on some other list. This is for SDL related talk and support, not flaming and certainly not for
ego inflation.

Ed

Oxford, UK ;-)> ----- Original Message -----

From: rfistman@gmail.com (Rhythmic Fistman)
To: sdl at lists.libsdl.org
Sent: Tuesday, 11 March, 2008 2:05:36 PM
Subject: Re: [SDL] Non-API changes I’d like to see in SDL 2.0

On 3/11/08, Edward Cullen wrote:

[…]

FYI, I’m 27 years old and have ‘been around’ in many different
professional environments (some more-so than others!). When I started
working at Sony as a contractor, I was offered a permanent position
within 4 weeks of starting and I HAD TO EXPLAIN TO MY BOSS THAT I WAS
STILL A STUDENT! I’m no mug; I am CERTAINLY no child and resent anyone
who would patronise me or speak to me in a condescending manner.

I don’t get you, Eddy. You whine like an Australian but you study like an
Italian. Graduate already! Many apologies to the mature-age students.

RF


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

  __________________________________________________________

Sent from Yahoo! Mail.
The World’s Favourite Email http://uk.docs.yahoo.com/nowyoucan.html

  1. No Libtool.

Heheh, I actually tried to ditch libtool early in SDL 1.3 development
and the scripts I ended up writing were just as messy and hard to maintain
as libtool itself. libtool is a known quantity for the package maintainers
for various operating systems, so I ended up keeping that and ditching
automake instead.

Fair point.

Interesting idea that I hadn’t considered. First things first though. :slight_smile:

Hehe, yeah… what can I say? I’m abitious! ;)> See ya!

-Sam Lantinga, Lead Software Engineer, Blizzard Entertainment


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

E. Wing wrote:

I would be interested in knowing, what specific things do people
dislike (or ‘hate’ as some have put it) about CMake. This has been an
on-and-off topic on the CMake list itself, but it would be nice to get
some opinions from those who are already not self-selected enough to
be on the CMake list.

  1. CMake is a meta-build system. That means that building a program
    requires another build tool and at least two steps.

  2. CMake is a meta-build system. This means its features are
    fundamentally limited to those supported by its target build system.

  3. CMake is a meta-build system. That means its actual build process
    shares the flaws of its target build system.

All of these factors convinced me not to use CMake for my own projects,
so I never bothered investigating it in more detail. When compiling
third party libraries, factor 1 is enough to annoy me.–
Rainer Deyke - rainerd at eldwood.com

All of these factors convinced me not to use CMake for my own projects,
so I never bothered investigating it in more detail. When compiling
third party libraries, factor 1 is enough to annoy me.

Was autoconf unacceptable, too? Because it’s arguably the same thing as
CMake, minus a scripting language that may or may not suck more than
CMake’s scripting language, and it only generates for one type of build
system.

As much as autoconf annoys me, once you scale to something as large as
SDL (which isn’t THAT large, all things considered) and support a few
different flavors of Unix, it helps way more than it hurts.

Also, I personally try to find the fastest route to a bash shell on
any platform, but I can’t tell you the number of emails I’ve gotten on
other projects complaining that there isn’t a [visual studio 6/7/8/9/10
| XCode | Dev-Cpp | Watcom | Code::Blocks | whatever] project file. Even
if I wasn’t an elitist Unix jerk, I wouldn’t want to spend time
maintaining all of that, and in those cases, something like CMake could
be really useful.

(There really is a lot that could improve about CMake, though…but “can
generate project files for Developer IDEs you don’t personally care
about” is a REALLY compelling feature).

–ryan.

(There really is a lot that could improve about CMake, though…but “can
generate project files for Developer IDEs you don’t personally care
about” is a REALLY compelling feature).

–ryan.

So Ryan,
I would be interesting in seeing your list of areas you would like to
see improved in CMake.

Thanks,
Eric

cmake / automake snip

Even if I wasn’t an elitist Unix jerk,

and what would the world of computers be without us/them/you ?!?!? :wink:

and just to add my 2 cents - all make helper programs invho are utterly
insane,
but i guess thats part of the whole elitist unix jerk thing going on :wink: