LLVM Clang vs GCC | C/C++

preview_player
Показать описание
Are you one of those programmers still debating about Clang or GCC?
Then this awkward an delicious video is for you! Both Clang and GCC are pretty good...

#programming #programmers #gamedev
Рекомендации по теме
Комментарии
Автор

I have both at all times but i use gcc since m still somewhat new to c++

salmonsushi
Автор

Smith Christopher Hall Anthony White Melissa

joemarveelouz
Автор

// This does work in LLVM's clang, which is bad:
clang overwrite_me.c -o overwrite_me.c
// Fortunately, GCC prevents this.
gcc overwrite_me.c -o overwrite_me.c
gcc: fatal error: input file ‘overwrite_me.c’ is the same as output file
compilation terminated.

OpenGLever