gtkDcoding icon indicating copy to clipboard operation
gtkDcoding copied to clipboard

2019/01/11/0000-introduction-to-gtkDcoding

Open utterances-bot opened this issue 3 years ago • 4 comments

0000: Introduction to GtkDcoding | gtkDcoding

An introduction to GTK 3 and how it can be used to create Graphical User Interfaces (GUI) for applications - a D language tutorial.

http://gtkdcoding.com/2019/01/11/0000-introduction-to-gtkDcoding.html

utterances-bot avatar Sep 04 '21 09:09 utterances-bot

This is a test comment, just to make sure it's all working.

rontarrant avatar Sep 04 '21 09:09 rontarrant

If "Error: linker exited with status 1181" try dmd –de –w –m64 gtkd.lib test_rig_imperative.d

EasyLian avatar Oct 02 '21 07:10 EasyLian

Thanks for leaving a comment, EasyLian. I'm assuming you got a linking error using that command? If so, you left out the -L in front of the library name. The command statement should be:

dmd -de -w -m64 -Lgtkd.lib test_rig_imperative.d

rontarrant avatar Oct 04 '21 19:10 rontarrant

Yes ,I got a linking error using that command. Error: linker exited with status 1181 You are right. I must left out the -L in front of the library name. The command: dmd –de –w –m64 gtkd.lib test_rig_imperative.d

EasyLian avatar Oct 18 '21 13:10 EasyLian