Developer forums (C::B DEVELOPMENT STRICTLY!) > Development

D Programming Language Support

<< < (6/13) > >>

stahta01:

--- Quote ---Start by selecting which strings are translatable and mark them with the _() macro.
--- End quote ---
From http://wiki.wxwidgets.org/Internationalization
http://www.wxwidgets.org/docs/faqcmn.htm#wxtmacro

You are changing text from _("Words") to _T("Words") this is likely wrong if the words are supposed to be translated.


--- Code: ---@@ -83,12 +87,12 @@
 
     m_Options.ClearOptions();
     m_Options.AddOption(_("Produce debugging symbols"),
-                _T("-g"),
-                _("Debugging"),
+                _T("-gc"),
+                _T("Debugging"),
                 _T(""),
                 true,
                 _T("-O -O1 -O2 -O3 -Os"),
-                _("You have optimizations enabled. This is Not A Good Thing(tm) when producing debugging symbols..."));
+                _T("You have optimizations enabled. This is Not A Good Thing(tm) when producing debugging symbols..."));
     wxString gprof_link = _T("-pg");
     if (platform::windows)
         gprof_link = _T("-pg -lgmon");

--- End code ---

Tim S.

bioinfornatics:
hello, i am a fedora packager and ldc and tango will be go to official fedora repo.
How use LDC compiler with codeblocks ?

beta rpm here: http://bioinfornatics.fedorapeople.org/

bioinfornatics:
ping

Note: ldc has moved to offcial fedora repo

afb:

--- Quote from: bioinfornatics on June 26, 2010, 04:23:18 am ---How use LDC compiler with codeblocks ?

--- End quote ---

You should be able to create such a feature patch by modifying the GDC support...

However, I don't think LDC works well with Windows yet (no exception support) ?

afb:

--- Quote from: bioinfornatics on July 27, 2010, 01:14:45 pm ---Note: ldc has moved to offcial fedora repo

--- End quote ---

and gdc is in the official ubuntu repo (for whatever that means).

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version