We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
spx
very true, that is not something novel. PyCharm has it as well nowadays (well i guess at lot of j…
»
Mārtiņš Možeiko
Can you show output of "echo %LIB%" after you called your shell.bat? How are you calling shell.ba…
»
catsonmars
I have this as my shell.bat @echo off call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\…
»
Mārtiņš Možeiko
Many debuggers do that now. For example: Chrome builtin JS debugger: https://developers.google.co…
»
Mārtiņš Možeiko
kernel32.lib is implicit. It is always linked to (because C/C++ startup code uses functions from …
»
Simon Anciaux
I've never seen the "display values in the source" feature and I'm curious to try it. Could it be…
»
Alberto Vaudagna
Add also kernel32.lib
»
Mārtiņš Možeiko
Oh, there's one more mistake. The "-c" argument. "-c" means compile only. So you were actually pr…
»
Josh Ayres
I figured it out. I have to compile an object file before the dll 1 2clang++ $CommonCompilerFlag…
»
Josh Ayres
So it is saying that the -shared is not being used during compilation.
»
Mārtiņš Možeiko
You need to pass "-shared" to clang/gcc arguments when creating shared library. So line 8 should …
»
Josh Ayres
Here is my build file: 1 2 3 4 5 6 7 8 9 10 11#!/bin/sh cd ../bin CommonCompilerFlags="…
»
Mārtiņš Možeiko
How did you create handmade.dll file?
»
Josh Ayres
Hello, I have started to follow Handmade Hero on linux. I have been trying to do Dynamic Loading…
»
spx
I've changed the image in the first post with one that should provide better quality when viewed …
»
Mārtiņš Možeiko
dfrunza 'user32.lib' needs to be passed to the linker using the '/link' option : That's not neces…
»
r2d2
Hello, everyone. In day 188 Casey adds support for mouse hover. He retrieves the current mouse c…
»
Dumitru Frunza
'user32.lib' needs to be passed to the linker using the '/link' option : 1cl -Zi ..\work\misc\win…
»
catsonmars
I should start off by saying I am using VS 2015, I have a shell file in w:\work\misc @echo off …
»
Farhod Miralimov
Thanks to all! I really appreciate your help, your answers really cleared a lot for me. Thanks ag…
»
Marko
I really don't know how I skipped this part. Thank you very much!!!! All the best!
»
Mārtiņš Možeiko
"unresolved external symbol" error means that linker doesn't know where to find these functions (…
»
Marko
Hello guys, Sorry for referencing beginning of the project, but I just lost a few days try to bu…
»
spx
Sorry for the image quality. I have replaced the image with the png version. The biggest issue ho…
»
Mārtiņš Možeiko
Very nice. You screenshot looks very blurry and hard to read for me... Maybe its because you are…
»
spx
Greetings, I've been working on this for some time now (probably since the start of this year) a…
»
Abner Coimbre
Handmade Folks! Hoping September treats you well. If anyone lives near a hurricane zone, please …
»
»
Simon Anciaux
Day 235 is the episode where OpenGL is introduced. You can have the basics there (and in the foll…
»
Matt
How deep do I need to go into the series to do hardware acceleration for simple 2D games? I'm no…
»