Linux Kernel Developers Discuss Dropping x32 Support (phoronix.com)
An anonymous reader shared a report: It was just several years ago that the open-source ecosystem began supporting the x32 ABI, but already kernel developers are talking of potentially deprecating the support and for it to be ultimately removed..
[...] While the x32 support was plumbed through the Linux landscape, it really hasn't been used much. Kernel developers are now discussing the future of the x32 ABI due to the maintenance cost involved in still supporting this code but with minimal users. Linus Torvalds is in favor of sunsetting x32 and many other upstream contributors in favor of seeing it deprecated and removed.
[...] While the x32 support was plumbed through the Linux landscape, it really hasn't been used much. Kernel developers are now discussing the future of the x32 ABI due to the maintenance cost involved in still supporting this code but with minimal users. Linus Torvalds is in favor of sunsetting x32 and many other upstream contributors in favor of seeing it deprecated and removed.
There is still a lot of product in the wild using some x32 architecture, be them 486+ or whatever, with kernel 2.6, please keep it thanks!
"Science will win because it works." - Stephen Hawking
Would it have hurt to include this?
The Linux x32 ABI as a reminder requires x86_64 processors and is engineered to support the modern x86_64 features but with using 32-bit pointers rather than 64-bit pointers. The x32 ABI allows for making use of the additional registers and other features of x86_64 but with just 32-bit pointers in order to provide faster performance when 64-bit pointers are unnecessary.
...except for the fact that this explanation is 25% of the four-paragraph article, and another 25% of it was already in TFS. Oops.
#naabhaprzrag, #sverubfr-000, #agi-fcbafberq, negvpyr[pynff*=' negvpyr-ary-'] { qvfcynl: abar !vzcbegnag; }
Back in the day Linus share his code with humanity, the idea was to provide a unix kernel alternative for 32bits i386 processors. This means, that whatever original code still exists in the kernel will be removed for good?
Wikipedia:
It's a 64-bit CPU thing, not a 32-bit CPU thing.
Does anyone have comments on how many apps made use of this? I know that's kind of nebulous, and a nebulous answer is fine.
Comment removed based on user account deletion
Ho.He?.Shut.Er.Down.Shut.Er.Down.We.Pay.For.No.Wall.For.x86.Shut.Er.Down.
This is entirely unrelated to the topic, but I have been wondering about it for quite some while. I'm not a native English speaker, so this is an honest question and not an attempt to make fun of something!
My understanding is that several in some way implies that something is a bit more, or took longer time, than expected. Or that it is equivalent to "quite a few".
But now and then I see the word several used as above, "It was just several years ago" or "Only several days left". Also from native English speakers.
Is that correct, and my understanding of the word wrong?
Hugs for all.
It looks like you missed a verb there. Either that, or Slashdot has finally come across something everyone on Slashdot can agree is "News for Nerds." One nerd attempting to assassinate a group of nerds certainly meets every possible meaning of "News for Nerds."
How many people use it? 50? 500? I see no reason for it to exist. It's not like Open Source has too much manpower to afford supporting a queer architecture barely used by anyone.
What this needs to be viable is a good set of utilities. For starters, all the basic command line things that won't need more than 4GB anyway, like uniq, grep, ifconfig, that sort of thing. I'd probably add a "lite" libC like musl, since it'll be targeted at embedded stuff also. Do that, and you have a powerful mix at the ready for embedded support, that's perfectly fine to also use normally on the desktop. And gnu libc is hopelessly bloated anyway, could use a good cleaning.
The comment that it's a drag to support... well, make it less of a drag. That'd be good for any ABI, architecture, and so on.
Good excuse to finally work on a decent ifconfig while at it. Like the netbsd/freebsd one, that lets you do *everything* to an interface that can be done to an interface. No, the alternatives don't cut it, because they're confused in concept. ifconfig the idea is clear. ifconfig the implementation in linux sucks. The linux alternatives to ifconfig suck both in concept and in implementation, and still require that zoo of "helper" utilities that a decent ifconfig wouldn't need.
See subject: Hostnames have a maxsize of 255 characters in length so by using shortstring vs. string it keeps vars on the local stack vs. the global heap (this performs closer to the CPU memory layers in L1/L2/L3/L4 caches vs. system RAM & yes, it performs faster).
Same thing is used for smallint/short vs. int var types & again - it performs FASTER.
* This is something programmers can do for "hand-optimization" but be DAMN SURE nothing you use exceeds the smaller sizes used OR you may run into problems/bugs...
APK
P.S.=> I see the point of it IF you want to get the utmost in performance out of a program - I do it myself & it works - & in a PRETTY SIMILAR way (except this sounds more like pointer-sizes to me, correct me IF I am "off/wrong" on that last part)... apk
How else will I run Linux on my SEGA Genesis?
Oh wait, x32, not 32X.
Carry on.
#DeleteFacebook
Is surely to provide a better abstraction layer.
I should not have to care if x32, DEC or the Prime Radiant are supported by the kernel admins. Patches should largely just work with minimal hacking.
In turn, it should not be such hard work to maintain code. Different systems have different ways to achieve the same thing with different optimizations possible.
All of that can be stuck in helper code, well almost all, which means there is far less maintenance.
This is not esoteric wisdom, its the basis behind all abstraction layers and the arch directory.
If there's a problem, it's because the job is half done.
Remove support only if nobody is stuck without it and it's trivial for users to add if they do need it.
It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
How else will I run Linux on my SEGA Genesis?
Oh wait, x32, not 32X.
Carry on.
this is the essential slashdot post, a pure brain fart, a true demonstration of the intelligence of this scene
You can still get new laptops with 4gig
Hey, sounds like something Linux would do. Here are some other ideas for the new-school Linux children. 1. Drop support for any text configuration file. Go full binary registry. Hell, make it an SQL database that has to start before the system can boot. 2. Convert all log files to encrypted binary files. Just making them binary wasn't good enough. 3. Disable all support for shell scripting. Only Python scripting is allowed now so that you can get the joy of tracebacks for everything you do. 4. Disable pipes and redirection since Unix gurus just make other people feel dumb with them. Who needs that? 5. Bring WINE into the kernel and natively start supporting DLLs. 6. Disable RPM in favor of MSI installers. You gotta have that built-in GUI, brah!
Here's the LKML post that kicked it off, if you don't want to click through: https://lkml.org/lkml/2018/12/10/1145
I think his point #2 is probably the most "nutty", but that really does seem like an implementation detail:
x32 support removal is the kind of thing that should be thought long and hard about, because it's the kind of thing that will be nearly impossible to put back in once it's removed. Abstraction layers and edge cases keep us (and the kernel devs) honest, and have some value even if the number of users is small. Additionally, this seems like a classic case of chicken-and-egg with a lesser-used arch variation. Perhaps actual *publicity* after it was put in 6 years ago would have helped; perhaps this story itself will prompt more use.
Hire a Linux system administrator, systems engineer,
See subject: Hostnames have a maxsize of 255 characters in length so by using shortstring vs. string it keeps vars on the local stack vs. the global heap (this performs closer to the CPU memory layers in L1/L2/L3/L4 caches vs. system RAM & yes, it performs faster).
Same thing is used for smallint/short vs. int var types & again - it performs FASTER.
* This is something programmers can do for "hand-optimization" but be DAMN SURE nothing you use exceeds the smaller sizes used OR you may run into problems/bugs...
REPOSTED vs. the obvious LOON that STALKS me constantly & downmods me projecting his MENTAL issues here https://linux.slashdot.org/com...
APK
P.S.=> I see the point of it IF you want to get the utmost in performance out of a program - I do it myself & it works - & in a PRETTY SIMILAR way (except this sounds more like pointer-sizes to me, correct me IF I am "off/wrong" on that last part)... apk
Speak for yourself you STALKER whacko: It makes me lmao I can just repost again & exhaust you of "downmodpoints" you useless off topic obviously "touched-in-the-head" OBSESSED lunatic https://linux.slashdot.org/com...
* Yes, I made SURE to point out you're a nutcase in the repost too.
APK
P.S.=> You're not only a whacko nutjob but you're ALSO a total weezil coward "hiding" from me by UNIDENTIFIABLE anonymous posts - you're disgusting & contemptible (& I think even YOU know that about yourself, creep)... apk
See subject & https://linux.slashdot.org/com... on pointer size there...
APK
P.S.=> "Onwards & UPWARDS"... apk
Kudos to _merlin (160982) per my "query" on this being more pointer-size oriented as I suspected https://linux.slashdot.org/com... & he seems to have clarified it for me...
APK
P.S.=> As I said there to him thanking him? "Onwards & UPWARDS"... apk
As far as I know their support is feature complete, outside of bugs in the toolchain/kernel.
Personally all these 'lets delete xxx feature' discussions and removals is just making the linux kernel LESS interesting, while the major fuckups and bugs in the kernel are mostly in new, stupid, overengineered code that wasn't well thought out to begin with.
x32 from everything I hear has some shortcomings, but at the same time has been the proof of concept for all the other 32 on 64 bit ABI attempts made. Furthermore if they are fucking around with the syscall interface often enough for it to affect ABI compatibility, maybe they should be taking a hard look at their own development practices instead of those of other developers.
Correct lgw (used it in function/proc calls) in https://linux.slashdot.org/com... where in Windows @ least, the 32-bit version of my program had a LIMIT of 8 "register" (C++ analog to "fastcall" function/proc pointers) & the 64-bit model could have up to 16 of them!
* Yes - it makes a difference on repeatedly called functions/procs & ESPECIALLY "workhorse" ones that AFTER I "hand-profiled" my code!
(Where to profile, I do 'oldschool' methods of registering hi-res multimedia timers in my code, checking time taken in each in repeated runs, recording it & then applying register to ones that take the MOST time &/or DO THE MOST WORK (especially IF/when repeatedly called (no recursion types in this program though)).
APK
P.S.=> Interesting thread/article here on /. today - refreshing & back to "old-school slashdot" imo (better than POLITICAL or "SJW" articles that have been hitting this place the past year or so now)... apk
See subject: They're to "further someone's agenda" ala "Climate Change" bs (which I think is natural/cyclical & mankind can't DO that much vs. it - no, doesn't HURT to try & be more efficient + "good to nature" though) - for example, take Al Gore (conman imo): He talks "save energy" but has some compound or home that BURNS like 1/2 the energy consumption where it's located (statewide) from what I've heard...
* What a HYPOCRITE conman - preaching "do as I say, NOT as I do"...
APK
P.S.=> The SCUM takes what's BEST in your as a human being civilized dutiful person & USE IT AGAINST YOU for their own greed/ends/profit (like "for the children" OR organized religion (yes, I believe in an almighty creative spirit & I think it loves us but I DO NOT BELIEVE IN MEN CREATED "GOD" TO MANIPULATE US) - which I gave up on - they use it to STIR THE MASSES to wars etc. like CHUMPS - the "opiate of the masses" alright - "thou shalt not kill" but the "CONTROLLERS" do THAT, everyday)... apk
And a lot of older features in *MINOR* releases, which at this point they are apparently pushing at 10 per year, making it hard for people to keep up with features they care about. Especially if they standardize on an older stable kernel and don't bother checking the lists because all the new feature work and regressions seem full retard and they are waiting for things to stabilize again.
Personally I'm looking at what it would take to get a linux kernel fork going, CoC free, with legacy features and a a series of standardized formal ABIs versioned for new driver development and deprecation support (But at the source level never removed. If something becomes insecure but is relied upon by code which hasn't been forward ported, you keep it boxed in somewhere for that poor sod of a developer who needs to forward port other code later and needs both the original implementation and the new implementation to test against, something linux has been notorious for not supporting, which in part is responsible for some of the half baked amateurism in glibc that made it such a clusterfuck of badly implemented features over the years (certain 'leaders' didn't help, but there were flaws at both kernel and library level.)
I tend to find that oddball intermediate layers like this die off rather quickly. In terms of "when I'd heard of it" to "when its death is proposed", this one is really quite quick.
I'm surprised that x86 is still supported, let alone an oddball "64-bit processor with 32-bit pointers" hybrid setup. Surely even x86 is only more for legacy and embedded chipsets, nowadays, where I can't imagine that x32 would help at all.
Either your chip is 64-bit capable, or not. If it is, even if there are minor advantages to running it in 32-bit mode, when there is COMPLETE and total support for 64-bit mode, it seems a nonsense not to use it. If it's not, then the question is moot anyway.
It's not like ARM or Intel of old where all the previous chips used 32-bit, then they supported 64-bit but people didn't get on board with it for a while. It's people with full-64-bit support, that can run either full 64-bit or full 32-bit, but choose to use an oddball and barely-supported middle ground because... well.. they don't want to use 64-bit pointers and use a little more memory.
It's like running your 80386 in 8086 mode. It may have been useful for a short period of time in the transition when the new hardware was expensive but the old software was more expensive to replace, but it'll die off and you'll never use it again. Except, in this case, it's wanting to use the 80386 chip features in a machine, but in such a way that it can only address 1Mb of RAM. Not even "use the 80386 as an 8086" but literally "I want to use the extra processor registers but not the full 4Gb of RAM, just the first Mb".
And in an era where 64-bit hardware has been the norm for nearly 2 decades now.
See subject: Hostnames have a maxsize of 255 characters in length so by using shortstring vs. string it keeps vars on the local stack vs. the global heap (this performs closer to the CPU memory layers in L1/L2/L3/L4 caches vs. system RAM & yes, it performs faster).
Same thing is used for smallint/short vs. int var types & again - it performs FASTER.
* This is something programmers can do for "hand-optimization" but be DAMN SURE nothing you use exceeds the smaller sizes used OR you may run into problems/bugs... compiler messages & warnings are your pal here vs. that too.
REPOSTED 2nd time to exhaust the LIMITED abused DOWNMODPOINT of an obviously OBSESSED psychotic LOON that STALKS me constantly & downmods me projecting his MENTAL issues here https://linux.slashdot.org/com... off topic.
APK
P.S.=> I see the point of it IF you want to get the utmost in performance & EFFICIENCY out of a program - I do it myself & it works - & in a PRETTY SIMILAR way (except this sounds more like pointer-sizes to me, correct me IF I am "off/wrong" on that last part (Kudos to _merlin (160982) per my "query" here now https://linux.slashdot.org/com... )... apk
Al Gore & conmen like him = hypocrites via "Do NOT as I do but as I say" well, PRACTICE WHAT YOU PREACH THEN, conman!
* It's THAT simple - or are you too "thick" in the skull to "get it"?
(Apparently, you are)
The ice age happened. Then the planet warmed again. The TRUE cause? Who knows but it IS a proven cycle that occurred. EAT YOUR WORDS.
APK
P.S.=> Nature wasn't kind to you in intelligence... apk
Don't take the 10% advance away from me! :-/ https://t2sde.org/
See subject: They're to "further someone's agenda" ala "Climate Change" bs (which I think is natural/cyclical & mankind can't DO that much vs. it - no, doesn't HURT to try & be more efficient + "good to nature" though) - for example, take Al Gore (conman imo): He talks "save energy" but has some compound or home that BURNS like 1/2 the energy consumption where it's located (statewide) from what I've heard...
* What a HYPOCRITE conman - preaching "do as I say, NOT as I do"...
APK
P.S.=> The SCUM takes what's BEST in your as a human being civilized dutiful person & USE IT AGAINST YOU for their own greed/ends/profit (like "for the children" OR organized religion (yes, I believe in an almighty creative spirit & I think it loves us but I DO NOT BELIEVE IN MEN CREATING "GODS" TO MANIPULATE US) - which I gave up on - they use it to STIR THE MASSES to wars etc. like CHUMPS - the "opiate of the masses" alright - "thou shalt not kill" but the "CONTROLLERS" do THAT, everyday)... apk
Al Gore & conmen like him = hypocrites via "Do NOT as I do but as I say" well, PRACTICE WHAT YOU PREACH THEN, conman!
* It's THAT simple - or are you too "thick" in the skull to "get it"?
(Apparently, you are)
The ice age happened. Then the planet warmed again. The TRUE cause? Who knows but it IS a proven cycle that occurred. EAT YOUR WORDS (& does Al Gore & crew asking for money going to STOP that? No).
LASTLY You should LEARN TO READ - I said it's not a "bad thing" to be efficient & environmentally conscious here https://linux.slashdot.org/com...
APK
P.S.=> Nature wasn't kind to you in intelligence... apk
See subject: THANK-YOU for a good laugh - that was a good one!
* :)
APK
P.S.=> Too bad this has meandered off topic but there ya are... apk
LMAO - Look @ your "ReAcTioN" - I love it ya "snowflakian being" (INFERIOR) doesn't LIKE being defied so I defy you.
* Go "Cry to MOMMY" ok - your "TaNtRuMz" have ZERO EFFECT on me & certainly won't STOP me... nothing stops me, but me (accept it, you can't).
APK
P.S.=> Lastly: I'm FAR from "complaining" (that's what you EFFETE "snowflakes" do) - I do something about it/take EFFECTIVE ACTION & get you to RUN DRY of your "downmodpoints" you abuse, easily - ESPECIALLY when I'm on topic & YOU ARE NOT snowflakian being (lol)... apk
What on earth are you rambling about? Is there some special use case for 32-bit pointer support on a 64-bit OS that is near and dear to your heart? Or, do you not know what you are talking about?
Dear UNIDENTIFIABLE ac stalker of me: My prog's no coinminer & /. laffs @ you "snowflakians" upset you https://linux.slashdot.org/com... obviously (look @ your "ReAcTioNz" hahaha which I point out here too that got ya "a wee bit 'hot'" hehehe https://linux.slashdot.org/com... )
* I do try to EMPATHIZE w/ "your kind" (the DEFECTIVE as gweihir calls you, OR as I call you usually, JEALOUS "Lil' Jowie" do-NOTHING "not-men" INFERIOR weezils that STALK me by UNIDENTIFIABLE anonymous etc.).
LOOK - I know "your kind" (lol) has ALWAYS "thrown tantrumz" & MOMMY repsonds just to shut you up, but it doesn't work on me - & you certainly DO NOT LIKE IT as I rather EASILY dust & DEFY you gettting you to RUN DRY of your ABUSED 'downmodpoints', lol!
APK
P.S.=> You ought to be used to it by now I'd think, having done nothing of VALUE in your WASTED existence & LOSING (it's all "your kind" is 'good' @) - I love your type! Why? 1st - you're not in my way in life (too weak/lazy/stupid), no competition & 2nd - you ALWAYS make ME look GOOD & yourself STALKING me by UNIDENTIFIABLE anonymous like the WEEZIL you are hahaha - thanks! apk
See subject: I didn't post that but TRUTH always made me LMAO & you project what you do obviously (like you are now too) but it sure "got a rise" outta ya, lol - funny stuff & PROBABLY very true!
* I see you're also DRY of "downmodpoints" again (hehehe) per "yours truly" EASILY defying you & showing you WHO IS BOSS (me) as always - you're SO easily manipulated - your "tell" is that you start posting & STALKING me by UNIDENTIFIABLE anonymous PROJECTING your own methods in false accusations my way once you are DRY of 'downmodpoints'.
(You're easier to read than a book & TWICE as simple to "get a rise" out of)
APK
P.S.=> NOW, lastly - I can't HELP IT if I am laughing @ YOU & "your kind" after I read that post (you & your FELLOW 'snowflakian beings', lol - MELTING under the pressure of life already, a little GLOBAL WARMING only accelerates it - hence your "no global warming" bs GRUBBING for shekels)... apk
I was on topic, you're not snowflake (lol) but you ARE the expert on complaining (as are all "snowflakian beings' lol) mad I defy you & make you look like a FOOL - why be mad? You've been a fool all your life - I'd think you'd be USED to it, lol!
* STALKING me by UNIDENTIFIABLE anonymous posts = MISSION ACCOMPLISHED as it's your "tell" I've gotten you to BLOW all your "downmodpoints" again as always - it is BIG FUN manipulating you to DANCE to my tune so easily you know.
Played YOU like a FIDDLE - well, not really - you played yourself, lol!
APK
P.S.=> OBSESSED? Why are YOU so "obsessed" w/ STALKING me by UNIDENTIFIABLE anonymous posts & unjustly DOWNMODDING my post on TOPIC when you are not? JOWIE your JEALOUS is showing - that's your fault, not mine - like I said - I do things of value to others & society, you don't & IF you want to be mad? Be mad @ yourself for being what GWEIHIR CALLS YOUR KIND - defectives, lol... apk
One of the options for negative moderation is redundant. By definition, reposting your comments results in redundant posts. Why, then, should they not be moderated as redundant? How is it an abuse to moderate redundant posts to -1? I'd like to hear your explanation.
See subject: You're redundantly proving your INSANELY obsessed per my subject & STALKING me by UNIDENTIFIABLE anonymous posts & I was ontopic. You're not & a butthurt psycho who OBVIOUSLY has something to HIDE (especially vs. me & I know what it is - I've DESTROYED YOU before, & SO BADLY you don't DARE expose YOUR registered 'lusername' to me so I can TOSS OUT THE REASON WHY you're still so "snowflakian butthurt" - it's SO obvious, lol).
* You really shouldn't TRY 'take me on' - I dust INFERIOR defectives (lol, thanks gweihir - love calling a "not man" like the one STALKING me now that) like you easily.
NOW - how YOU "ReActT" to it DANCING on my puppet strings & my tune I PLAY YOU WITH? That, is YOUR FAULT (& highly amusing, & SO predictable - makes me lmao daily).
APK
P.S.=> Don't CRY now complaining "Lil' snowflake" - you can post more SJW posts & get "upmodded" for MORE 'downmodpoints' tomorrow right? Don't worry , lol - I'll offend your "sensitive tender dick" weezil sensibilities (using fact vs. your bs offtopic) again & EXHAUST you of them as always, hahaha DEFYING you + easily NULLIFYING your wannabe 'weapon' in bogus downmods (when I was on topic, you're not, no less)... apk
NPD! The CRY of the injured "ne'er-do-well" vs. their SUPERIORS (like me obviously based on your effete reaction & wasted life doing ZERO of value STALKING me by UNIDENTIFIABLE anonymous posts here, JEALOUS "Lil' Jowie", hahahaha).
* You've got DELUSIONS of GRANDEUR even thinking you're QUALIFIED to issue your 'prognosis' there, Dr. Quack the WHACKO "SiDeWaLk-ShRiNk of /.", lol...
APK
P.S.=> You said I'm God here, not I (I think I quoted JOB from "The Lawnmower Man" once though admittedly but only to make a point computers are in my control SINCE I ACTUALLY CODE GOOD THINGS others like & use + yes, I've 'facetiously' albeit KIDDINGLY stressing it, called my "The LORD of HOSTS" because it fits since my program creates good hosts files & many here + 100k @ least worldwide use it as well as praise it - now YOUR KIND? Well - sits around STALKING my kind out of JEALOUS "Lil' Jowie" RAGE but it's REALLY @ yourself & you KNOW it, do-NOTHING "not man" you are, lol)... apk
I'm an embedded dev, and this is totally useful on any platform with 4G of memory, which is a lot of them. It is, in fact, probably the most optimal way to run an x86_64 processors on a platform that actually does not need more than 32 bits of address space. This is a non-trivial number of applications. Like, lots. There are computers beyond servers and engineering workstations ya know. Lots more. You just conveniently pretend embedded and/or purpose-built systems are designed and programmed by magic.
Where was I doing that HERE under the parent thread, on topic, you downmod hid (& I merely reposting nullifying that) https://linux.slashdot.org/com... ?
* POOR LIL' LIAR YOU, blows it again...
(You're pitiful)
APK
P.S.=> In ANOTHER spot (which only proves it's YOUR DEMENTED ASS STALKING ME AGAIN, lol) I only replied to lgw who noted it to me (as I stated I was refreshed it wasn't SJW bullshit in this article's topic again) https://linux.slashdot.org/com... & we merely MEANDERED (until YOU stepped in "climate change snowflake" - yes, we KNOW WHY you fear it getting warmer - you SNOWFLAKES already MELT under the pressure of life (lol) badly enough as is, lmao)... apk
Projecting your modus operandi again? Yes, obviously - you know what I've noticed?? You trolls' fav color HAS to be transparent!
* You're SO EASY to see thru... lmao!
APK
P.S.=> You DO know that STALKING me as you do by UNIDENTIFIABLE anonymous posts only PROVES you fear me, don't you? apk
why does some of the best tech, only get mentioned when it is beeing removed?
its self-signed ssl without a certificate authority all over again.. (aka. dnssec-dane)
but why not just merge it with x86_64?
kernel & kernel space do not need to use 32bit pointers, to support executables that does!
it could simply mmu map x32 executables & libraries/wrappers to the first 4gb of virtual memory!
personally I like the idea of running kernel and user space on different cores..
for example:
Intel: ME(quark) + x86_64,
AMD: PSP(arm) + X86_64,
Wii: (arm) + PPC,
RPI: (vc4) + ARM,
ESP32: (ulp) + Xtensa,
etc..
I'm starting to think you have a split personality and have been stalking yourself all this time.
Everyone notices you hassle me & raymorris, gweihir, SuperKendall, creimer + probably others I don't notice as much - you're nothing more than a sick in the head little pest.
APK
P.S.=> Honestly imo, the way you act? I used to think you were some DOLT I dusted here who "tried me" & failed so he stalks me all psycho-style "butthurt" but now? I think you're some lonely kid w/ nothing better to do/too much time on your hands (idle hands = the devil's workshop) - grow up, do something else w/ your life before 10-20 yrs. goes by & you find yourself doing what you're doing now - nothing & certainly NOTHING worthwhile or fulfilling... apk
Article topic isn't global warming so get on topic OR just go away pest. Best part is IF you're right? Added heat melts away snowflakes (lmao) like you, just as the joker replier said & I found extremely hilarious.
APK
P.S.=> Care to PROVE your statements on anti-semitism, bigotry etc. with proof of ME posting any of it? No?? Didn't think so (I use shekels all the time - rubbed off on my FROM my friends that are jews actually (surprise, surprise))... apk
I am still hoping for 8-bit support one day for the M6809 processor... Dang.
Honestly -- I don't know why there ever was so much movement toward x64 -- everything takes more memory..
Provided ... you do not use the C programming language.
Java has done this for a long time. Pointers only point to things that are 8 byte aligned. And you do not do pointer arithmetic just to parse a String.
I just laughed so hard I spit coffee all over my screen: You STALK me constantly by UNIDENTIFIABLE anon & say I have issues? Please... lol!
APK
P.S.=> Everything you "advise" is ALL on & about you - i.e. - you need shrinks & are a danger to yourself.... apk
"Run, Forrest: RUN!!!" from a question https://linux.slashdot.org/com... = you...
APK
P.S.=> Now, what's that about EGO? Yours feelin' a "wee bit SHATTERED"?? Yes "Forrest"... apk
See subject & again: Care to PROVE your statements on anti-semitism, bigotry etc. & proof of ME posting it? No?? Didn't think so (I use shekels all the time - rubbed off on my FROM my friends that are jews actually (surprise, surprise)).
* You've DELUSIONS of GRANDEUR even thinking you're QUALIFIED to issue your 'prognosis' there, Dr. Quack the WHACKO "SiDeWaLk-ShRiNk of /.", lol...
APK
P.S.=> Also care to produce your license to practice psychiatric sciences w/ your degree in them too PLUS a formal diagnosis of my alleged mental condition given in a professional psychiatric environs? No, didn't think so either (YOU ARE LIBELING ME per the "Goldwater Law" you know breaking laws saying what you said PSYCHO that STALKS me all over /. constantly & YOU TRY CALL ME "CRAZY"? Please)... apk
Where'd I say that in the post you replied to? That was a DIRECT reply to lgw I was speaking to & HIS points (which were on topic to me so I replied back to his points, that's all + I was speaking to HIM, not you, so butt out WHACKO that STALKS me all over /. like the psycho you are).
* You're COMPLETELY OFF-TOPIC & butting into a conversation that didn't INVOLVE you @ all...
APK
P.S.=> You call me names libeling me w/ no proof BUT I do have proof YOU SUPPLY in you STALKING me on /. now yet again via UNIDENTIFIABLE anonymous WEEZIL coward methods as always - there are LAWS against STALKING you know... apk
Take your own advice, get on topic (you off topic troll STALKING me by UNIDENTIFIABLE anonymous like the psycho you are).
APK
P.S.=> Consider taking your OWN advice & using it yourself, loon... apk
You'd think an educated man (lol, not) like you could realize you're off topic completely, topic being "Linux Kernel Developers Discuss Dropping x32 Support" - Linux, not your theories.
APK
P.S.=> GET ON TOPIC PLEASE & quit STALKING us all by UNIDENTIFIABLE anonymous offtopic trollings... apk
I have a laptop with a AMD64 processor and 2GB RAM - I suppose a good candidate for this. ;) )
- Does anyone know where to download a x32 ABI distro?
(live CDs and/or detailed instructions how to build your own
Thanks!
For fuck's sake, read the article.
Care to PROVE you are a certified professional in "writing analysis" yourself? IS there such a degree/certification?? That's YOUR problem.
APK
P.S.=> This ought to be good for a laugh... apk
Arstechnica = losers who stalked me (as you do now anonymously unidentifiably) to NTCompatible.com & Windows IT Pro magazine forums to their public dismay in Jeremy Reimer & Jay Little + Jarrett DeAngelis (who posts here on /. until I drove his ass off too) when their websites were REMOVED by their hosting providers in Shaw Canada & CrystalTech (for both email harassing me caught on a tracking ticket + stalking me & posting lies about me on them).
Right AFTER I destroyed them both PUBLICLY @ Windows IT Pro on Exchange Servers memory being freed UNHALTING them (which tells you Exchange is HEAVILY POINTER ORIENTED linked list driven, which leads to memory fragmentation that CAN halt a serverware).
Jay Little the "self-proclaimed 'EXCHANGE EXPERT'" HAD TO CONCEDE IT from MICROSOFT'S OWN DOCUMENTATION proving it FOR me there (where they as usual stalked me AS YOU ARE NOW)
Peter Bright/Dr. Pizza (alias GOITERMAN, lol) can tell you what happened to his IRC server after that (lol).
"The great arseHOLEtechnica" (not) RUN OUT of their own server chatrooms hahaha (by "yours truly").
In effete retaliation they edited my posts & impersonated me on their little private playpen of UNDERACHIEVER losers.
APK
P.S.=> ABOVE ALL ELSE: Thanks for outing yourself as 1 of the "few, the defeated" from arseHOLEtechnica - always a pleasure exposing your lame asses (that are nothing more than do-NOTHING "ne'er-do-wells" THAT CAN'T STAND THEMSELVES for it (lol, no shit) & that you are REDUCED to STALKING ME by UNIDENTIFIABLE anonymous too... lmao!)... apk