Author Topic: Wiki up to date?  (Read 4925 times)

Offline Jianju

  • Single posting newcomer
  • *
  • Posts: 4
Wiki up to date?
« on: July 02, 2011, 07:21:22 am »
 Hello, folks. First post, here. :D

I'm not clear on the wiki address:

http://wiki.codeblocks.org/index.php?title=Using_GLFW_with_Code::Blocks

Quote
Compile

    For Windows users, there is a batch file which allows to compile using a variety of compilers. Open a DOS window, cd to the directory where GLFW lives (e.g. C:\glfw), and type compile make mgw. If you use the Borland compiler, type compile make bcc instead, and for MSVC, type compile make msvc.

I get:

Quote
'make' is not recognized as an internal or external command, operable program or batch file.

Perhaps this is something basic, but I'm not finding it. A bit of help, anyone?

Running Windows 7 on an Asus eee netbook. Have Code::Blocks & MinGW working. Trying to get started with 3D coding.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: Wiki up to date?
« Reply #1 on: July 02, 2011, 08:39:01 am »
You need to install make, probably the MSYS variant of make.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline Jianju

  • Single posting newcomer
  • *
  • Posts: 4
Re: Wiki up to date?
« Reply #2 on: July 02, 2011, 09:47:22 pm »
You need to install make, probably the MSYS variant of make.
Thanks, that was what I suspected, but without 'MSYS' as a keyword, the info I needed was obfuscated by a sea of hits for '+make +command'.

I installed MSYS & TCL, but had to install MAKE.EXE seperately. (Thought it would be included in the main package. :?

Now I'm looking for msys-1.0.dll.. I'll find it. These are the bumps & burrs of getting started with coding, I suppose. :)
« Last Edit: July 02, 2011, 09:50:17 pm by Jianju »

Offline Jianju

  • Single posting newcomer
  • *
  • Posts: 4
Re: Wiki up to date?
« Reply #3 on: July 02, 2011, 11:53:38 pm »
At every step, I am halted by these damned dll errors.  After finding & placing a few others, I'm getting the following message:

Quote
C:\msys\1.0\bin\msys-iconv-2.dll is either not designed to run on Windows or it contains an error. Try installing the program again using the original installation media or contact your system administrator or software vendor for support.

Is the dll out of date? I can't seem to find a more recent version.

My apologies if this shouldn't be posted here.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7591
    • My Best Post
Re: Wiki up to date?
« Reply #4 on: July 03, 2011, 01:36:28 am »
FYI:

I always try the Gnuwin32 make before MSys Make.
Note: I often end up using MSys or Cygwin Make because Gnuwin32 make is not enough.

http://gnuwin32.sourceforge.net/packages/make.htm

In rare cause, copying MinGW mingw32-make.exe to make.exe works.

Tim S.
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline Jianju

  • Single posting newcomer
  • *
  • Posts: 4
Re: Wiki up to date?
« Reply #5 on: July 03, 2011, 04:52:48 pm »
GNU Make did the trick! Thanks for your help, Tim!!