rontarrant / gtkDcoding

Sample code from gtkDcoding.com, a tutorial blog for new GtkD programmers.
http://gtkdcoding.com
36 stars 5 forks source link

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

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

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

rontarrant commented 3 years ago

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

EasyLian commented 2 years ago

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

rontarrant commented 2 years ago

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

EasyLian commented 2 years ago

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