Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
202 views

Can an exe be smaller than its largest declared buffer?

The reason I'm asking: #include <string.h> using namespace std; int main() { unsigned char file[512000]; unsigned char key[512000]; for(int i = 0; i < 512000; i++) ...
2
votes
1answer
230 views

What's the equivalent of gcc's -mwindows option for cl in windows?

cl : Command line warning D9002 : ignoring unknown option '-mwindows' Seems -mwindows is only for gcc, does cl has a similar option?
1
vote
1answer
57 views

How to reset file pointer in a CL program?

I am currently working on a CL program which needs to read some records from a file. The file is overridden to itself for one of its members. Then there are some RCVF operations to retrieve the ...
1
vote
1answer
107 views

gdb equivalent for VC++ cl compiler?

I am in the process of porting my application from "MinGW/GCC/make" to "cl compiler/nmake" chain tool. I extensively used "gdb" for debugging in Linux/MinGW environments. What is the command-line tool ...
1
vote
1answer
71 views

Why the object is created also , When creating precompiled header?

I want to create a .pch within a make file. cl /nologo /c /YcPrecompiled.hpp /FpPrecompiled.pch Precompiled.cpp What confused me is : Why this command also create a object named Precompiled.obj ...
1
vote
0answers
68 views

GHC Foreign hs_init/hs_add_root crashes

I don't repeat more than necessary, brief summary: Following the Adder example on machine with win7 (64) with VS 2010. (For the example look at ...
1
vote
2answers
134 views

Lisp symbols without package bindings

I've been working on some project. It should be able to do numerical and symbolic computing. But now I stuck on one problem and I don't really know how to resolve it. To be specific and short, let's ...
1
vote
1answer
50 views

Automatic conversion of stucture to pointer in function call

We have a pretty normal looking printf style function in our project, with the modification that the %g format means to print a GUID instead of the normal floating-point type. For our case, a GUID ...
1
vote
2answers
182 views

Trying to compile with cl.exe

Sorry if this is a simple question, I don't do much programming in Windows. I have Visual Studio installed but when I try to execute "cl" from the command line it tells me it's not recognized as a ...
0
votes
1answer
30 views

periodic crashes in cl.exe, kernelbase.dll

I frequently have the following crash from cl.exe. This happens both when compiling and running other a help command on cl. This is happening on Windows Server 2008, but I think this happens sometimes ...
0
votes
0answers
46 views

Different builds are produced by ANT-based build and Visual Studio

My CPU-intensive project is built with ANT using Visual Studio 2010 compile tools. During some benchmark sessions I noticed that when I use dll that I manually build from Visual Studio it runs ~40% ...
0
votes
1answer
46 views

cl.exe produces weird assembly code

I compiled this C code: void foo(){ int i=0; i=0; i=0; } and I got this: push ebp mov ebp,esp push ecx mov dword ptr ss:[ebp-4],0 mov dword ptr ss:[ebp-4],0 mov dword ptr ss:[ebp-4],0 mov esp,ebp ...
0
votes
1answer
149 views

Visualize function calls with Graphviz for Windows programs

I came across this fascinating article (on reddit): Visualize function calls with Graphviz It explains how one could use: a GNU compiler toolchain, the Addr2line utility, custom glue code, and ...
0
votes
0answers
201 views

Android Google Calendar Service getting “400 Bad Request”

I'm new to Google web services and not sure why my request is not going through. I'm able to get my Auth token no problem using the following code: HttpClient client = new DefaultHttpClient(); ...
0
votes
3answers
498 views

R quantmod - getsymbols and use of lapply, Cl() and merge to extract only closing prices

I've been messing around with this for some time. I recently started using the quantmod package to perform analytics on stock prices. I have a ticker vector that looks like the following: > ...
0
votes
1answer
80 views

sbcl debugging cl-gtk2-gk if the backend thread hangs

Some sample, straight forward gtk2 within-main-loop I'm currently trying to add code at key-press-event If I make an error in the guy code, the gui thread will hang in the repl, I can still get the ...
0
votes
1answer
189 views

LTCG doesn't remember that /O2 was specified at compile time

Background I am using CL and LINK from the command line to build a project composed of native C++, mixed C++/CLI, and safe C++/CLI. I need to target .NET Framework 2.0-3.5 so I am using the VC90 ...
0
votes
1answer
286 views

How do I add a static dependency to a dll (advapi32.dll) from the cl.exe command line?

I'm sure there's something simple I'm missing. I'm running from the Visual Studio Command Prompt.
0
votes
1answer
311 views

Connecting to SQL Server with CL-SQL via unixODBC/FreeTDS

I've managed to connect from SBCL running on debian to an SQL Server 2000 instance over the network using FreeTDS/unixODBC. I can actually get data back from the server, so all is working. However, ...
0
votes
3answers
798 views

Platform Builder command line building question

I'm building a project from command line , using WinCE platform builder , and I need RTTI to be enabled , so that my project works correctly . I tried setting the option RTTI="YES" in the sources and ...