Search:

Type: Posts; User: Max Carey; Keyword(s):

Search: Search took 0.09 seconds.

  1. Replies
    9
    Views
    8,016

    Re: CMake vs Autotools

    My only experience with CMake is wishing more people used it. I work on Linux and Windows machines, and trying to build third-party code natively on Windows is a huge pain using autotools. I think...
  2. Replies
    2
    Views
    1,464

    Re: Pattern matching of variable in bash

    When you use the == and != operators inside [[ ]], bash uses fairly simple pattern matching (not regular expressions). The { } syntax is not recognized, so you are simply trying to match the string...
  3. Re: C++ header files what am I doing wrong

    You were never compiling stuff.cpp so your main method could not resolve Cube::show().
  4. Re: C++ header files what am I doing wrong

    You have an extraneous semicolon in stuff.cpp at the end of the Cube::show definition. It should look like


    #include <iostream>
    #include "stuff.h"

    void Cube::show(){

    std::cout<< "come on...
  5. Replies
    10
    Views
    21,564

    Re: sqlite database always locked

    anybody?
  6. Replies
    10
    Views
    21,564

    Re: sqlite database always locked

    bump
  7. Replies
    10
    Views
    21,564

    sqlite database always locked

    Hi, I'm trying to create and update a sqlite (v3.5.8) database in a c++ program. I open the database using

    sqlite3 *db;

    sqlite3_open("database.db", &db);

    But any time I try to access the...
Results 1 to 7 of 7