Search Result

Collapse
12 results in 0.0022 seconds.
Keywords
Members
Tags
compiler
  •  

  • Lars Pedersen
    started a topic Why doesn't my cygwin work with the cURL example?
    in C

    Why doesn't my cygwin work with the cURL example?

    Hi guys

    Compiler: Cygwin
    OS : Windows 7 (64 bit)
    C-Skills: Basic Understanding

    So... I'm trying to make my cygwin compiler work with the cURL library, but it isn't really working all that well...

    I've tried to completely re-install cygwin, by first removing the folder I stored cygwin in and then install cygwin with the 4 different cURL library's possible.

    I can call functions...
    See more | Go to post

  • why doesn't the compiler recognize the function although I included the right libs?

    this is the code
    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>
    void main () {
    int b ;
    randomize () ;
    b = random (61) + 40 ;
    printf ("This is b: %d\n", b ) ;
    }
    These are the errors:

    error LNK2019:unresol ved external symbol_random referenced in function_main

    error LNK2019:unresol ved external symbol_randomiz e
    ...
    See more | Go to post

  • AlienAdy
    started a topic Add "compile" option into an application
    in .NET

    Add "compile" option into an application

    Hi guys!

    I am coding a free software that will have 2 parts. Part 1. is an admin panel where a user will be able to select some options. Part 2. is a finished new application which a user can send to some other user, so a standalone application that has nothing to do with the admin panel. Now, the problem is, I don't know how to connect those two parts. I want to add an option in the admin panel that says "build" which will...
    See more | Go to post

  • which kinds of constructors may be applied during compile time as optimization.

    take two following classes and their constructors as samples:

    Code:
    class One{
     public:
      One(int a,int b):adad1(a),adad2(b){}
     private:
      int adad1;
      int adad2;
    };
    class Two{
     public:
      Two(int input[]){
       for (int i=0;i<10;i++)
        araye[i]=input[i];
      }
     private:
      int araye[10];
    };
    considering objects with static...
    See more | Go to post

  • how does an optimizing c++ compiler reuse stack slots of a function?

    How does an optimizing c++ compiler determine when a stack slot of a function(part of stack frame of a function) is no longer needed by that function, so it can reuse its memory? .
    By stack slot I mean a part of stack frame of a function, not necessarily a whole stack frame of a function and an example to clarify the matter is, suppose we have a function that has six integer variables defined in its scope, when it's time to use sixth variable...
    See more | Go to post

  • mdandreano5
    started a topic How do I download a Java Compiler?
    in Java

    How do I download a Java Compiler?

    I need help with downloading a compiler for Java. I have tried several times but I can't get anything to download. Can someone please help?
    See more | Go to post

  • tms005
    started a topic How to Compile Aix C++ Codes in Window platform?
    in C

    How to Compile Aix C++ Codes in Window platform?

    Anyone know how to compile Aix C++ Codes into Window platform?

    I have tried to compile my Aix (Version 4.2) C++ Codes using Bloodshed Dev C++ and Microsoft Visual C++ Compiler and I have copied all the include files from my Aix system to my Window system,

    but encounter many errors due to the differences in their Library References.


    Can anyone help?
    Thanks a lot.
    See more | Go to post

  • Alexander Morou
    started a topic Compiler Framework on top of the .NET CLI
    in .NET

    Compiler Framework on top of the .NET CLI

    Greetings,

    I've been writing a framework for the Common Language Infrastructure (aka .NET) for about six to eight months. Its end goal is to greatly reduce the amount of work necessary to write a compiler. It will do so by handling the heavy lifting, such as transforming high-level concepts into somewhat lower-level concepts for use by the CLI.


    Above is an image which gives a basic structure outline...
    See more | Go to post

  • questionit
    started a topic Linking
    in C

    Linking

    What is Linking in a compiler. What does linking do, why is it required?

    Thanks
    qi
    See more | Go to post

  • lothas
    started a topic error C2679
    in C

    error C2679

    Hi, I'm working on a project to create a robotics simulation environment based on c++ and opengl. Right now I'm stuck trying to solve a compilation error that I'm getting while trying to push_back an object from one of my classes.
    Here's part of the code:
    Code:
    class RobotStruct  
    {
    public:
    	RobotStruct();
    	virtual ~RobotStruct();
    
    	void AddJoint(float Theta, float Alpha, float a, float d, int Type);
    ...
    See more | Go to post

  • poreko
    started a topic mysql C API with XAMPP?
    in C

    mysql C API with XAMPP?

    Hi
    I would like to connect to mysql using C but I have not been successful. I am using XAMPP and Visual C++ express edition.
    Can anyone guide me through the process?
    Thanks
    See more | Go to post

  • sizeof(struct) giving unexpected sizes. Memory alignment issues?

    I noticed some quirks with C++ (not sure if this is the same for C).

    I have:

    Code:
    struct A {
        char a[14];
    };
    
    struct B {
        char b[16];
    };
    
    struct C {
        struct A a;
        struct B b;
    };
    sizeof(C) produces 32, which is mind boggling. Is the C++ compiler trying to align it to the memory structure? This is god awful for doing things...
    See more | Go to post
Working...