Expecting me to know how to compile shit

>expecting me to know how to compile shit
>not just making an exe file for me to install
I'm not a fucking nerd that knows how to compile shit, just give me an executable. Githubfags are cancer

Attached: 1529866266967.jpg (569x604, 270K)

Other urls found in this thread:

xxxxxxxxxxxxxx.
harmful.cat-v.org/software/dynamic-linking/
harmful.cat-v.org/software/dynamic-linking/versioned-symbols
gnu.org/fun/jokes/evilmalware.html
twitter.com/NSFWRedditVideo

>go to the directory and type 'make'
whoah that was hard

Please don't post anime while being retarded, thank you.

Welcome to dependency hell.

>that 25 year old boomer virgin who can't resolve dependencies

Attached: 1512353245581.png (645x729, 63K)

this

fucking devs are such a lazy cunts
>need to find that specific version
>website gives me a .tar.bz

Attached: 1467010564253.jpg (957x621, 55K)

i don't think you understand what github is for, try cnet or majorgeeks instead

ANIME
FUCKING
WEBSITE
No matter how hard you try to pretend it isn't

Check the Releases page then

teach me to compile Jow Forums

TEACH ME TO FISH SO I DONT STARVE ON NON FREE ZA' :C

I was asking him not to post anime while being retarded, not to not post anime, retard.

>not using app stores

Are you from the past

Sure. It was founded as such but evolved into something totally different. Face it. You fucking skinny weebs are the minority now and we chads want you out. Get out of my way virgin.

Attached: 1528919186804.jpg (1150x720, 163K)

>have to install something
>need to use the command prompt instead of just having an install wizard
lmao these gnucucks are fucking deranged

Ironic shitposting is still shitposting.

This.
Jow Forums took over this trap infested hell hole and we kind of like it here now.

GNU/Linux will purify the vile existance of proprietary (((swindling))).

Also anime is for basedfags without a racial identity or culture that leeches off of asians.

look for readme/compile/build/install files, needed special instructions are typically provided
for a lot of things,
./configure
make
make install
will do the job, if you see a 'makefile' and no instructions, this is what you're expected to do, some simpler programs don't have an 'install' function (if you don't know what to do with the built binary, then you probably have no use for that program)

Well you're a SILLY HEAD >:3

Attached: 1529481649588.jpg (320x317, 18K)

That's why you click this tab, OP

Attached: release.png (91x62, 803)

./configure
make
sudo checkinstall
# Bob's you're uncle

>makes your binary and installs it for you.

>Also anime is for basedfags
Yes anime likers are indeed BASED

Would it make you happy if someone wrote a script that forced you to click through a pointless wizard every time you wanted to install/upgrade a package?

>expecting developers to compile their precious programs for every minor OS and proprietrary OS

and what version of libraries are you running? Ones that are compatible with a pre-compiled binary?
Are you even running glibc? Or musl? Are you on x86? ARM?

>devs are such a lazy cunts
Find me someone that thinks compiling for every known architecture and statically linking libraries is a good idea. Protip: you can't.

There's a damn good reason you give source and not a binary.

>not using the only good OS, Microsoft Windows

Attached: 1243301469695.jpg (263x310, 76K)

>that smug anime face
Okay, you've convinced me, I'll use Windows. Where can I download the source code so I can compile it myself?

>Good OS
>Can't compile your own programs with ease

Attached: oh my.jpg (260x366, 22K)

Go back to Windows and enjoy your malware infested exes, faggot.

Attached: Gayposters_Go_Tsumugi.png (507x374, 126K)

No user, you are the cancer.

>>/v/

>search for 'program x' in the botnet engine of your choice
>click on most trustworthy website
>downloadzz.programs4free.to/scams/program_x.htm
>find the real download button
>enable all the javascript because the site won't enable downloading otherwise
>close 5 popups
>find the download button again
>download the .exe
>open downloads folder
>click on it
>program x wants root privileges
>enter credentials
>program x wants network access
>click accept all
>disable toolbar
>click next
>disable system cleanup utility
>click next
>program x installs
>click finish
>cpu goes to 100%
>program x mines monero on your machine
>can't disable it either because its proprietary garbage
vs
>open terminal
>pacaur -Ss programname/funtionality
>pacaur -S package_name
>program is installed
Windowsfags will defend this shit

>error while loading shared libraries: XXXXXXXXXX: cannot open shared object file
>sudo apt_get install XXXXX
>type password
>error while loading shared libraries: XXXXXXXXXX: cannot open shared object file
>search for error in some stackoverflow forum full of retards
>retards don't explain well
>"you need to sudo install SHIT"
>or "you need to sudo install more SHIT"
>doesn't work
>search some more
>make symlinks
>sudo ln -s
>type password
>update libraries
>sudo update
>type password
>download latest version from website xxxxxxxxxx
>type the whole link: wget xxxxxxxxxxxxxx. .tar.gz
>sudo sudo sudo
>type password type password type password
>error
>search the internet to find there are multiple not 100% functional solutions for infinite distros
>your system doesn't support this library version
>search for install files
>walltext
>error while loading shared libraries: XXXXXXXXXX: cannot open shared object file
vs
>you need XXX.dll / XXX.exe / XXX.lib / XXX.fuck
>type XXX.dll / XXX.exe / XXX.lib / XXX.fuck on google
>download
>install or copy to folder
>done
Linuxfags will defend this shit

>t. can't replace a broken harddrive

>trying to run some random binary you downloaded off some random website that depends on deprecated libraries likely full of security holes, without even checking if it was even supported on your distro
no i won't defend that because the problem is twofold:

1) the people who are trying to ship you broken ass software
2) you for expecting the same janky solutions you can get away with on windows (installing random dlls from malware sites you found on google) to work anywhere else

also just so you know

>type password
sudo has a default timeout of 5 minutes which can be extended or disabled, but very few of those steps you've mentioned should take longer than 5 minutes
>type the whole link
your terminal emulator should support X11 clipboards, otherwise you can use xclip or lynx within tmux/screen

>Find me someone that thinks compiling for every known architecture and statically linking libraries is a good idea. Protip: you can't.
Pro tip: I think this is a great idea for many use cases. You just need to automate it. Stop being such a lazy fuckass that you cant be bothered to automate your laziness.
>what is jenkins ci
Do you know how amazing it is to reduce your binary image footprint to a single executable? It just works and it doesnt matter what other dependencies are fucking installed. It brought them along for the ride like a responsible executable should. Do you realize that static linking is also the only way to guarantee memory alignment for performance-critical items involving complex datastructures? AAA games would run like dogshit if they didnt static link across huge portions of their codebases.

Also, compiler optimizations do not work across DLL boundaries. If you are statically linking, your object files are all in a flat hierarchy and optimization can take place across the entire scope of items as opposed to individual restrictive scopes.

>“I tend to think the drawbacks of dynamic linking outweigh the advantages for many (most?) applications.”
>John Carmack
Additional reading:
>harmful.cat-v.org/software/dynamic-linking/
>harmful.cat-v.org/software/dynamic-linking/versioned-symbols

OP's using Windows, he doesn't have a convenient way of installing those dependencies, and yet he blames the author(s) rather than switching to a non-shit OS

Attached: qwe_download.png (625x626, 24K)

gnu.org/fun/jokes/evilmalware.html

>I'm not a fucking nerd
Then fuck off

>Githubfags are cancer
Then stop getting your software from a source code repository, dumbass.
There's a limit to how retarded one can be.

Attached: 1516158663062.jpg (350x296, 24K)