User Cristi&#225;n Romo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T15:07:58Z http://stackoverflow.com/feeds/user/1256 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1757159/the-compiler-doesnt-seem-to-accept-agent-class/1757216#1757216 3 Answer by Cristián Romo for the compiler doesn't seem to accept Agent class Cristián Romo 2009-11-18T16:23:21Z 2009-11-18T19:34:51Z <p>The line</p> <pre><code>Agent theAgent(void); </code></pre> <p>Is actually viewed by the compiler as declaring the function <code>theAgent</code> that takes no arguments and returns an Agent.</p> <p>This is explained the the <a href="http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.19" rel="nofollow">C++ FAQ Lite</a>.</p> <p>To call the default constructor and set up an object of type <code>Agent</code> (as opposed to the statement above that's interpreted as a function declaration,) you can just declare <code>theAgent</code> without using parentheses at all, as in:</p> <pre><code>Agent theAgent; </code></pre> <p>All normal member calls, such as <code>loadSAG</code> will work as expected after this point.</p> <p>As an alternative, if you must have the object on the heap, use this instead:</p> <pre><code>Agent* theAgent = new Agent(); // Notice the * theAgent-&gt;loadSAG(); // Use -&gt; instead of . // The code where theAgent is used delete theAgent; // This frees the memory allocated by new </code></pre> http://stackoverflow.com/questions/1725147/templates-nested-classes-and-expected-constructor-destructor-or-conversion-b 0 Templates, nested classes, and "expected constructor, destructor, or conversion before '&' token" Cristián Romo 2009-11-12T20:29:34Z 2009-11-12T20:37:30Z <p>While working with some templates and writing myself a basic container class with iterators, I found myself needing to move the body of member functions from a template class into a separate file to conform to style guidelines. However, I've run into an interesting compile error:</p> <blockquote> <p>runtimearray.cpp:17: error: expected constructor, destructor, or type conversion before '&amp;' token runtimearray.cpp:24: error: expected constructor, destructor, or type conversion before '&amp;' token runtimearray.cpp:32: error: expected constructor, destructor, or type conversion before '&amp;' token runtimearray.cpp:39: error: expected constructor, destructor, or type conversion before '&amp;' token runtimearray.cpp:85: error: expected constructor, destructor, or type conversion before 'RuntimeArray' runtimearray.cpp:91: error: expected constructor, destructor, or type conversion before 'RuntimeArray'</p> </blockquote> <p>runtimearray.h:</p> <pre><code>#ifndef RUNTIMEARRAY_H_ #define RUNTIMEARRAY_H_ template&lt;typename T&gt; class RuntimeArray { public: class Iterator { friend class RuntimeArray; public: Iterator(const Iterator&amp; other); T&amp; operator*(); Iterator&amp; operator++(); Iterator&amp; operator++(int); Iterator&amp; operator--(); Iterator&amp; operator--(int); bool operator==(Iterator other); bool operator!=(Iterator other); private: Iterator(T* location); T* value_; }; RuntimeArray(int size); ~RuntimeArray(); T&amp; operator[](int index); Iterator Begin(); Iterator End(); private: int size_; T* contents_; }; #endif // RUNTIMEARRAY_H_ </code></pre> <p>runtimearray.cpp:</p> <pre><code>#include "runtimearray.h" template&lt;typename T&gt; RuntimeArray&lt;T&gt;::Iterator::Iterator(const Iterator&amp; other) : value_(other.value_) { } template&lt;typename T&gt; T&amp; RuntimeArray&lt;T&gt;::Iterator::operator*() { return *value_; } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::Iterator&amp; RuntimeArray&lt;T&gt;::Iterator::operator++() { ++value_; return *this; } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::Iterator&amp; RuntimeArray&lt;T&gt;::Iterator::operator++(int) { Iterator old = *this; ++value_; return old; } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::Iterator&amp; RuntimeArray&lt;T&gt;::Iterator::operator--() { --value_; return *this; } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::Iterator&amp; RuntimeArray&lt;T&gt;::Iterator::operator--(int) { Iterator old = *this; --value_; return old; } template&lt;typename T&gt; bool RuntimeArray&lt;T&gt;::Iterator::operator==(Iterator other) { return value_ == other.value_; } template&lt;typename T&gt; bool RuntimeArray&lt;T&gt;::Iterator::operator!=(Iterator other) { return value_ != other.value_; } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::Iterator::Iterator(T* location) : value_(location) { } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::RuntimeArray(int size) : size_(size), contents_(new T[size]) { } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::~RuntimeArray() { if(contents_) delete[] contents_; } template&lt;typename T&gt; T&amp; RuntimeArray&lt;T&gt;::operator[](int index) { return contents_[index]; } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::Iterator RuntimeArray&lt;T&gt;::Begin() { return Iterator(contents_); } template&lt;typename T&gt; RuntimeArray&lt;T&gt;::Iterator RuntimeArray&lt;T&gt;::End() { return Iterator(contents_ + size_); } </code></pre> <p>How can I make these errors go away? The files make sense to me, but alas, it's the compiler's say that matters.</p> http://stackoverflow.com/questions/276957/the-difference-between-free-software-and-open-source-software 2 The difference between Free Software and Open Source Software Cristián Romo 2008-11-10T02:52:47Z 2009-11-11T01:13:18Z <p>For quite a while, I thought that Free Software was Open Source Software. I've found out that this view is incorrect, and that Open Source Software is not necessarily Free Software. I honestly can't see any differences.</p> <p>What am I missing here? What are the distinguishing traits of both parties?</p> http://stackoverflow.com/questions/1540886/what-did-the-c-operators-and-do/1541006#1541006 7 Answer by Cristián Romo for What _did_ the C operators /\ and \/ do? Cristián Romo 2009-10-08T23:05:29Z 2009-10-09T23:22:35Z <p>I'm not sure about <code>\/</code>, but <code>/\</code> is a valid construct. It is used to place the two slashes of a single line comment on separate lines. For example:</p> <pre><code>/\ / Comment content </code></pre> <p>This works because the backslash character escapes the newline and the parser continues as if it wasn't there. This will not work if there is a space after the backslash or if the second forward slash is indented. Because of this, it is possible to escape as many newlines as you like, as in</p> <pre><code>/\ \ \ \ \ / Still a legal comment. </code></pre> <p>Backslashes can also be used at the end of regular single line comments to make them continue to the next line, as in</p> <pre><code>// Yet another comment \ This line is in the comment \\ And so is this one! </code></pre> http://stackoverflow.com/questions/579887/how-expensive-is-rtti 9 How expensive is RTTI? Cristián Romo 2009-02-23T23:46:21Z 2009-10-09T20:27:18Z <p>I understand that there is a resource hit from using RTTI, but how big is it? Everywhere I've looked just says that "RTTI is expensive," but none of them actually give any benchmarks or quantitative data reguarding memory, processor time, or speed.</p> <p>So, just how expensive is RTTI? I might use it on an embedded system where I have only 4MB of RAM, so every bit counts.</p> <p>Edit: <a href="http://stackoverflow.com/questions/579887/how-expensive-is-rtti/579917#579917">As per S. Lott's answer</a>, it would be better if I include what I'm actually doing. <a href="http://stackoverflow.com/questions/566846">I am using a class to pass in data of different lengths and that can perform different actions</a>, so it would be difficult to do this using only virtual functions. It seems that using a few <code>dynamic_cast</code>s could remedy this problem by allowing the different derived classes to be passed through the different levels yet still allow them to act completely differently.</p> <p>From my understanding, <code>dynamic_cast</code> uses RTTI, so I was wondering how feasable it would be to use on a limited system. </p> http://stackoverflow.com/questions/215851/making-grub-automatically-boot-the-kernel 8 Making GRUB automatically boot the kernel Cristián Romo 2008-10-19T01:31:08Z 2009-08-22T22:36:40Z <p>I am currently writing a kernel, and in an attempt to actually run it, I've decided to use GRUB. Currently, we have a script to attach GRUB's stage1, stage2, a pad file, and the actual kernel itself together which makes it bootable. The only problem is that when running it, you have to let GRUB know where the kernel is and how long it is manually and then boot it, like this:</p> <pre>kernel 200+KERNELSIZE boot</pre> <p>Where <code>KERNELSIZE</code> is the size of the kernel in blocks. This is fine and dandy for a start, but is it possible to get these values in the binary and make GRUB boot the kernel automatically?</p> http://stackoverflow.com/questions/1197106/static-constructors-in-c-need-to-initialize-private-static-objects/1197122#1197122 0 Answer by Cristián Romo for static constructors in C++? need to initialize private static objects Cristián Romo 2009-07-28T22:30:44Z 2009-07-28T22:30:44Z <p>To initialize a static variable, you just do so inside of a source file. For example:</p> <pre><code>//Foo.h class Foo { private: static int hello; }; //Foo.cpp int Foo::hello = 1; </code></pre> http://stackoverflow.com/questions/1133131/newlines-in-string-not-writing-out-to-file 0 Newlines in string not writing out to file Cristián Romo 2009-07-15T18:35:09Z 2009-07-15T20:11:28Z <p>I'm trying to write a program that manipulates unicode strings read in from a file. I thought of two approaches - one where I read the whole file containing newlines in, perform a couple regex substitutions, and write it back out to another file; the other where I read in the file line by line and match individual lines and substitute on them and write them out. I haven't been able to test the first approach because the newlines in the string are not written as newlines to the file. Here is some example code to illustrate:</p> <pre><code>String output = "Hello\nthere!"; BufferedWriter oFile = new BufferedWriter(new OutputStreamWriter( new FileOutputStream("test.txt"), "UTF-16")); System.out.println(output); oFile.write(output); oFile.close(); </code></pre> <p>The print statement outputs</p> <blockquote> <p>Hello<br /> there!</p> </blockquote> <p>but the file contents are</p> <blockquote> <p>Hellothere!</p> </blockquote> <p>Why aren't my newlines being written to file?</p> http://stackoverflow.com/questions/1087600/pointers-to-virtual-member-functions-how-does-it-work/1087680#1087680 0 Answer by Cristián Romo for Pointers to virtual member functions. How does it work? Cristián Romo 2009-07-06T15:40:11Z 2009-07-06T15:40:11Z <p>I'm not entirely certain, but I think it's just regular polymorphic behavior. I think that <code>&amp;A::f</code> actually means the address of the function pointer in the class's vtable, and that's why you aren't getting a compiler error. The space in the vtable is still allocated, and that is the location you are actually getting back.</p> <p>This makes sense because derived classes essentially overwrite these values with pointers to their functions. This is why <code>(a-&gt;*f)()</code> works in your second example - <code>f</code> is referencing the vtable that is implemented in the derived class.</p> http://stackoverflow.com/questions/527037/git-svn-not-a-git-command 3 git-svn not a git command? Cristián Romo 2009-02-09T03:04:33Z 2009-05-21T22:17:17Z <p>While attempting to get an old svn dump of a project under git control, I ran into an interesting problem. Whenever I run <code>git svn</code>, I get an error saying it isn't a git command, yet there is documentation for it that I can pull up using <code>git help</code>. Is there something wrong with my install, or am I just missing something here?</p> <p>Edit: I should probably also mention that I am running msysGit version 1.6.1.9.g97c34 under Windows XP, and the error I get is:</p> <pre>$ git svn git: 'svn' is not a git-command. See 'git --help'. Did you mean one of these? fsck show</pre> http://stackoverflow.com/questions/10477/equidistant-points-across-bezier-curves 2 Equidistant points across Bezier curves Cristián Romo 2008-08-13T23:31:32Z 2009-05-12T22:23:58Z <p>Currently, I'm attempting to make multiple beziers have equidistant points. I'm currently using cubic interpolation to find the points, but because the way beziers work some areas are more dense than others and proving gross for texture mapping because of the variable distance. <strong>Is there a way to find points on a bezier by distance rather than by percentage? Furthermore, is it possible to extend this to multiple connected curves?</strong></p> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/845853#845853 1 Answer by Cristián Romo for Computer Language puns and jokes Cristián Romo 2009-05-10T18:46:16Z 2009-05-10T18:46:16Z <p>One that I came up with the other day:</p> <pre><code>that | smoke </code></pre> <p>A.k.a. "Put that in your pipe and smoke it."</p> http://stackoverflow.com/questions/831531/asynchronous-input-in-lua 1 Asynchronous input in Lua Cristián Romo 2009-05-06T20:16:36Z 2009-05-07T00:05:38Z <p><a href="http://stackoverflow.com/questions/821893/getting-input-with-iup-in-lua">In a related question I asked how to get input via IUP</a>. This works fine, except that it goes through the system, and is subject to the repreat rate which is not optimal for a game. What I would really like is the ability to obtain the current state of any key at a given time. Is there a way to do this (through IUP or otherwise)?</p> http://stackoverflow.com/questions/821893/getting-input-with-iup-in-lua 1 Getting input with IUP in Lua Cristián Romo 2009-05-04T20:27:30Z 2009-05-06T21:03:39Z <p>I've been trying to get input with IUP to make a small pong game. I wanted to try some input, and tried some of the code that comes with the IUPGL examples, but the input doesn't seem to be working at all. Here's the code as it stands so far:</p> <pre><code>require "iuplua" require "iupluagl" require "luagl" paddle = {x = -0.9, y = 0.2} function drawPaddle(x, y) gl.Begin(gl.QUADS) gl.Color(0.0, 0.5, 0.0) gl.Vertex(x, y) gl.Vertex(x + 0.1, y) gl.Vertex(x + 0.1, y - 0.4) gl.Vertex(x, y - 0.4) end canvas = iup.glcanvas{buffer = "DOUBLE", rastersize = "300x300"} function canvas:action(x, y) iup.GLMakeCurrent(self) gl.ClearColor(0.0, 0.0, 0.0, 0.0) gl.Clear(gl.COLOR_BUFFER_BIT) gl.Clear(gl.DEPTH_BUFFER_BIT) gl.MatrixMode(gl.PROJECTION) gl.Viewport(0, 0, 300, 300) gl.LoadIdentity() drawPaddle(paddle.x, paddle.y) gl.End() iup.GLSwapBuffers(self) end window = iup.dialog{canvas, title = "Soon to be Pong"} function canvas:k_any(c) if c == iup.K_q then return iup.CLOSE elseif c == iup.K_w then paddle.y = paddle.y + 0.02 return iup.CONTINUE else return iup.DEFAULT end end window:show() iup.MainLoop() </code></pre> <p>It's my understanding that <code>canvas:k_any()</code> gets called when a key is pressed, but it's not responding, even to the quit command. Any ideas?</p> http://stackoverflow.com/questions/130475/why-is-lisp-used-for-ai 22 Why is Lisp used for AI? Cristián Romo 2008-09-24T23:00:17Z 2009-04-06T15:30:46Z <p>I've been learning Lisp to expand my horizons and because I have heard that it is used in AI programming, yet after doing some exploring, I have yet to find AI examples or anything in the language that would make it more inclined towards it. Was Lisp used in the past because it was available, or is there something that I'm just missing?</p> http://stackoverflow.com/questions/631201/why-is-a-second-cin-ignore-necessary 3 Why is a second cin.ignore() necessary? Cristián Romo 2009-03-10T16:48:11Z 2009-03-10T16:59:53Z <p>I've noticed that whenever I write a program that uses <code>std::cin</code> that if I want the user to press Enter to end the program, I have to write <code>std::cin.ignore()</code> twice to obtain the desired behavior. For example:</p> <pre><code>#include &lt;iostream&gt; int main(void) { int val = 0; std::cout &lt;&lt; "Enter an integer: "; std::cin &gt;&gt; val; std::cout &lt;&lt; "Please press Enter to continue..." &lt;&lt; std::endl; std::cin.ignore(); std::cin.ignore(); // Why is this one needed? } </code></pre> <p>I've also noticed that when I'm not using <code>cin</code> for actual input but rather just for the <code>ignore()</code> call at the end, I only need one.</p> http://stackoverflow.com/questions/134887/when-to-use-quote-in-lisp 4 When to use 'quote in Lisp Cristián Romo 2008-09-25T17:59:42Z 2009-02-23T16:59:21Z <p>After making it through the major parts of an introductory Lisp book, I don't understand what the <code>(quote)</code> (or equivalent <code>'</code>) function does, yet it's been all over Lisp code that I've seen. What does it do?</p> http://stackoverflow.com/questions/547436/whats-the-difference-between-eq-eql-equal-and-equalp-in-lisp 10 What's the difference between eq, eql, equal, and equalp in Lisp? Cristián Romo 2009-02-13T19:56:15Z 2009-02-20T04:10:28Z <p>What's the difference between eq, eql, equal, and equalp in Lisp? I understand that some of them check types, some of them check across types an all that, but which is which? When is one better to use than the others?</p> http://stackoverflow.com/questions/566846/sending-arbitrary-data-through-several-functions 1 Sending arbitrary data through several functions Cristián Romo 2009-02-19T19:45:18Z 2009-02-19T20:42:55Z <p>While making a state system that follows the <a href="http://www.dofactory.com/Patterns/PatternState.aspx" rel="nofollow">state design pattern</a> (which is working quite well so far) and I am now wondering if there is a way to send arbitrary data to this system. I was thinking that this might be possible using a Stimulus class.</p> <p>The system itself is composited into another object that can respond to the stimuli, and both the state machine and the states themselves can have stimuli as well, and they will be passed from the outer to the inner levels via function calls. The problem being that the stimuli need to carry arbitrary data to these different levels, and I can't think of a simple way to get it out.</p> <p>I was thinking that it might be possible using a <code>dynamic_cast</code>, but I was wondering if there might be a better way.</p> http://stackoverflow.com/questions/550189/is-it-safe-to-delete-this 6 Is it safe to `delete this`? Cristián Romo 2009-02-15T02:25:16Z 2009-02-15T06:46:10Z <p>In my initial basic tests it is perfectly safe to do so. However, it has struck me that attempting to manipulate <code>this</code> later in a function that <code>delete</code>s <code>this</code> could be a runtime error. Is this true, and is it normally safe to <code>delete this</code>? or are there only certain cases wherein it is safe?</p> http://stackoverflow.com/questions/425818/are-there-any-open-source-code-generation-projects-out-there/426347#426347 1 Answer by Cristián Romo for Are there any open-source code-generation projects out there? Cristián Romo 2009-01-08T22:44:46Z 2009-01-08T22:44:46Z <p>There's also <a href="http://nedbatchelder.com/code/cog/" rel="nofollow">Cog</a>, which allows you to run Python scripts inside of source files. The included Cog module allows printing into the file that it's currently working on. Cog is licensed under MIT.</p> http://stackoverflow.com/questions/117055/licensing-and-using-the-linux-kernel 3 Licensing and using the Linux kernel Cristián Romo 2008-09-22T19:43:25Z 2009-01-08T04:22:35Z <p>I would like to write my own OS, and would like to temporarily jump over the complicated task of writing the kernel and come back to it later by using the Linux kernel in the mean time. However, I would like to provide the OS as closed source for now. What license is the Linux kernel under and is it possible to use it for release with a closed source OS?</p> <p>Edit: I am not interested in closing the source of the Linux kernel, I would still provide that as open sourced. I am wondering if I could use a closed source OS with an open source kernel.</p> <p>Further edit: By OS, I mean the system that runs on top of the kernel and is used to launch other programs. I certainly did not mean to include the kernel in the closed source statement.</p> http://stackoverflow.com/questions/398543/passing-newly-allocated-data-directly-to-a-function 4 Passing newly allocated data directly to a function Cristián Romo 2008-12-29T20:16:02Z 2008-12-29T23:51:52Z <p>While learning different languages, I've often seen objects allocated on the fly, most often in Java and C#, like this:</p> <pre><code>functionCall(new className(initializers)); </code></pre> <p>I understand that this is perfectly legal in memory-managed languages, but can this technique be used in C++ without causing a memory leak? </p> http://stackoverflow.com/questions/363351/once-youve-adopted-boosts-smart-pointers-is-there-any-case-where-you-use-raw-p/363476#363476 2 Answer by Cristián Romo for Once you've adopted boost's smart pointers, is there any case where you use raw pointers? Cristián Romo 2008-12-12T17:18:51Z 2008-12-12T17:18:51Z <p>I still use raw pointers on devices that have memory mapped IO, such as embedded systems, where having a smart pointer doesn't really make sense because you will never need or be able to <code>delete</code> it.</p> http://stackoverflow.com/questions/172935/executing-code-stored-as-a-list 5 Executing code stored as a list Cristián Romo 2008-10-06T00:55:00Z 2008-11-17T12:29:25Z <p>After understanding (quote), I'm curious as to how one might cause the statement to execute. My first thought was</p> <pre><code>(defvar x '(+ 2 21)) `(,@x) </code></pre> <p>but that just evaluates to <code>(+ 2 21)</code>, or the contents of <code>x</code>. How would one run code that was placed in a list?</p> http://stackoverflow.com/questions/276884/learning-c-after-c 2 Learning C# after C++ Cristián Romo 2008-11-10T02:06:00Z 2008-11-10T06:32:33Z <p>In a progression of languages, I have been learning C and C++. Now I would like to learn C#. I know there are some drastic differences between them - such as the removal of pointers and garbage collection. However, I don't know many of the differences between the two.</p> <p>What are the major differences that a C++ programmer would need to know when moving to C#? (For example, what can I use instead of STL, syntactic differences between them, or anything else that might be considered important.)</p> http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/267549#267549 2 Answer by Cristián Romo for The funniest/weirdest error message you've got from a development environment/application Cristián Romo 2008-11-06T03:17:28Z 2008-11-06T03:17:28Z <p>Not really funny, but the timing was good. That is, if an error is ever good... I got it while browsing this question.</p> <p>On Stack Overflow: <code>Server Error in '/' Application.</code></p> http://stackoverflow.com/questions/65607/writing-a-macro-in-common-lisp 3 Writing a ++ macro in Common Lisp Cristián Romo 2008-09-15T18:47:57Z 2008-10-27T23:36:15Z <p>I've been attempting to write a Lisp macro that would perfom the equivalent of ++ in other programming languages for semantic reasons. I've attempted to do this in several different ways, but none of them seem to work, and all are accepted by the interpreter, so I don't know if I have the correct syntax or not. My idea of how this would be defined would be</p> <pre><code>(defmacro ++ (variable) (incf variable)) </code></pre> <p>but this gives me a SIMPLE-TYPE-ERROR when trying to use it. What would make it work?</p> http://stackoverflow.com/questions/1999/could-you-recommend-a-good-free-project-hosting-website/10565#10565 4 Answer by Cristián Romo for Could you recommend a good free project hosting website? Cristián Romo 2008-08-14T01:44:16Z 2008-10-26T15:22:16Z <p>I recommend <a href="http://www.assembla.com/" rel="nofollow">Assembla</a>. It has several tools for use including repository controls and browsers for SVN, Mercurial, and Git. It has a wiki tool, persistant chat, milestone and ticket that can be assigned to members of the team. <s>It also has 200MB of storage for free.</s> Upgrades for more storage and tools are available.</p> <p><a href="http://blog.assembla.com/assemblablog/tabid/12618/bid/6986/Release-2-0-restricting-free-plans-giving-back-with-features-and-price-reductions.aspx" rel="nofollow">Assembla is no longer supporting free spaces for closed source projects</a>. As an alternative, I recommend <a href="http://www.unfuddle.com" rel="nofollow">Unfuddle</a>, which has 200MB of storage for free, bug tracking, milestones, and a private repository, but with the restriction that only two people can work on the project.</p> <p>However, Assembla and Unfuddle both support private repositories for those that are willing to pay, if you are interested in going that route.</p> http://stackoverflow.com/questions/216716/no-rule-to-make-target-consoleio-c 0 No rule to make target consoleio.c Cristián Romo 2008-10-19T17:38:08Z 2008-10-20T07:10:29Z <p>In a <a href="http://stackoverflow.com/questions/215933/gcc-compiler-error-on-windows-xp">recent issue</a>, I've found that DJGPP can only accept the DOS command line character limit. To work around this limitation, I've decided to try to write a makefile to allow me to <a href="http://www.delorie.com/djgpp/v2faq/faq16_4.html" rel="nofollow">pass longer strings</a>. In the process of hacking together a makefile and testing it, I've come across a strange error. The makefile is as follows:</p> <pre><code>AS := nasm CC := gcc LD := ld TARGET := $(shell basename $(CURDIR)) BUILD := build SOURCES := source CFLAGS := -Wall -O -fstrength-reduce -fomit-frame-pointer -finline-functions \ -nostdinc -fno-builtin -I./include ASFLAGS := -f aout export OUTPUT := $(CURDIR)/$(TARGET) CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c))) SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s))) SOBJS := $(SFILES:.s=.o) COBJS := $(CFILES:.c=.o) OBJS := $(SOBJS) $(COBJS) build : $(TARGET).img $(TARGET).img : $(TARGET).bin concat.py $(TARGET).bin : $(OBJS) $(LD) -T link.ld -o $@ $^ $(SOBJS) : %.o : %.asm $(AS) $(ASFLAGS) $&lt; -o $@ $(COBJS) : %.o : %.c $(CC) -c $&lt; $(CFLAGS) -o $@ </code></pre> <p>When attempting to run it, I receive this error:</p> <pre>make: *** No rule to make target `consoleio.c', needed by `consoleio.o'. Stop.</pre> <p>What I don't understand is why it's trying to find a rule for .c files. From what I understand, if the file is there, it should just use it. How do I make make not need a rule for .c files?</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652820#652820 Comment by Cristián Romo on What is the worst real-world macros/pre-processor abuse you've ever come across? Cristián Romo 2009-11-25T14:31:30Z 2009-11-25T14:31:30Z @paxdiablo: Well, I have heard it called &quot;Portable assembly.&quot; It lives up to its name well. http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895303#895303 Comment by Cristián Romo on How can you tell if a person is a programmer? Cristián Romo 2009-11-20T21:22:51Z 2009-11-20T21:22:51Z C-based? Python, Ruby, and Common Lisp all start indexing at 0. The only language I personally know that starts at 1 is Lua. http://stackoverflow.com/questions/1757159/the-compiler-doesnt-seem-to-accept-agent-class/1757246#1757246 Comment by Cristián Romo on the compiler doesn't seem to accept Agent class Cristián Romo 2009-11-18T19:52:13Z 2009-11-18T19:52:13Z @Troubadour: Hey, I missed that one. Good catch. http://stackoverflow.com/questions/1757159/the-compiler-doesnt-seem-to-accept-agent-class Comment by Cristián Romo on the compiler doesn't seem to accept Agent class Cristián Romo 2009-11-18T19:40:38Z 2009-11-18T19:40:38Z That's what the compiler thinks, but that's not what's intended. http://stackoverflow.com/questions/1757159/the-compiler-doesnt-seem-to-accept-agent-class/1757246#1757246 Comment by Cristián Romo on the compiler doesn't seem to accept Agent class Cristián Romo 2009-11-18T19:21:44Z 2009-11-18T19:21:44Z @ChadNC: I didn't down vote because &quot;I don't think there is a new operator in C++,&quot; I down voted because it's being used inappropriately. To get use the <code>new</code> operator without leaking memory, you need <code>theAgent</code> to be an <code>Agent&#42;</code>, and all members would be accessed with the pointer to member operator <code>-&gt;</code>. This leaves the pointer accessible so that the memory can be `delete`d later. http://stackoverflow.com/questions/1757159/the-compiler-doesnt-seem-to-accept-agent-class/1757246#1757246 Comment by Cristián Romo on the compiler doesn't seem to accept Agent class Cristián Romo 2009-11-18T18:39:24Z 2009-11-18T18:39:24Z This might work (and indeed will, since you're using the default copy constructor,) but <i>it will leak memory.</i> This is because you are assigning the contents of the <code>new Agent</code> (allocated on the heap) to <code>theAgent</code>. Since C++ isn't garbage collected and you aren't keeping a reference to the allocated memory to delete, this memory will not be reclaimed until the program terminates. Don't do it this way. http://stackoverflow.com/questions/1757159/the-compiler-doesnt-seem-to-accept-agent-class/1757205#1757205 Comment by Cristián Romo on the compiler doesn't seem to accept Agent class Cristián Romo 2009-11-18T16:24:13Z 2009-11-18T16:24:13Z Copy constructor actually. http://stackoverflow.com/questions/1725147/templates-nested-classes-and-expected-constructor-destructor-or-conversion-b/1725204#1725204 Comment by Cristián Romo on Templates, nested classes, and "expected constructor, destructor, or conversion before '&' token" Cristián Romo 2009-11-13T02:21:26Z 2009-11-13T02:21:26Z Extern templates? I'm including both the declaration of the class and the definition into the using file. That seems like it'd be the same as if I'd just done it all in one file to me. http://stackoverflow.com/questions/1725147/templates-nested-classes-and-expected-constructor-destructor-or-conversion-b/1725182#1725182 Comment by Cristián Romo on Templates, nested classes, and "expected constructor, destructor, or conversion before '&' token" Cristián Romo 2009-11-12T21:08:14Z 2009-11-12T21:08:14Z How is the first one ambiguous? I don't see it. http://stackoverflow.com/questions/1725147/templates-nested-classes-and-expected-constructor-destructor-or-conversion-b/1725204#1725204 Comment by Cristián Romo on Templates, nested classes, and "expected constructor, destructor, or conversion before '&' token" Cristián Romo 2009-11-12T20:58:12Z 2009-11-12T20:58:12Z After Charles Bailey's fix, including the .cpp file allows the client program works. It's not the way <i>I'd</i> do it, (heck, as far as I know, the standard library and Boost use the only header approach,) but it's the way the teacher wants it. http://stackoverflow.com/questions/1725147/templates-nested-classes-and-expected-constructor-destructor-or-conversion-b/1725173#1725173 Comment by Cristián Romo on Templates, nested classes, and "expected constructor, destructor, or conversion before '&' token" Cristián Romo 2009-11-12T20:40:38Z 2009-11-12T20:40:38Z I know. It's for college, and I don't agree with half the majority of the style guidelines. However, realize that this isn't part of the assignment, but something I did to solve the assignment. We haven't even gotten to pointers, templates, or even classes yet. http://stackoverflow.com/questions/1714166/can-go-programming-language-replace-c-c/1714219#1714219 Comment by Cristián Romo on Can Go programming language replace C/ C++ ? Cristián Romo 2009-11-11T21:27:44Z 2009-11-11T21:27:44Z @Xinus: What I think he means is that Go is directly compiled to native code, whereas Java is compiled to an intermediary instruction set and then JITed. So an advantage Go has over Java is that it can work without an intermediary step. http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1712502#1712502 Comment by Cristián Romo on What's your take on the programming language Go? Cristián Romo 2009-11-11T20:40:59Z 2009-11-11T20:40:59Z @fbrereto: I think that <code>-</code> is a better candidate; it looks like a continuation of one string to the next and illustrates that it is non-commutative. <code>&quot;Hang on... &quot; - &quot;I'm almost finished.&quot;</code> http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1713160#1713160 Comment by Cristián Romo on What's your take on the programming language Go? Cristián Romo 2009-11-11T18:28:33Z 2009-11-11T18:28:33Z That would be Mark Twain: <a href="http://en.wikiquote.org/wiki/Mark_Twain#History" rel="nofollow">en.wikiquote.org/wiki/Mark_Twain#History</a> http://stackoverflow.com/questions/58640/great-programming-quotes/60819#60819 Comment by Cristián Romo on Great programming quotes Cristián Romo 2009-10-30T12:50:46Z 2009-10-30T12:50:46Z Yes. (15 chars)