|
I have a website with a mix of ASP (classic) and ASP.NET pages.
For some reason Visual Studio (specifically 2008 Pro) keeps trying to compile the ASP classic pages.
How do I prevent it from trying to compile the .asp pages?
Reason: I'm getting a ton of...
Started by Brian Boatright on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Go to the file explorer (in windows, not in vs), choose properties and ... .
What is in the @Page directive on those classic ASP pages? Have you tried inserting <% @Page language="vbscript" %> Maybe this does it already?
This is one solution.
|
|
I have a program that allows a user to type java code into a rich text box and then compile it using the java compiler. Whenever I try to compile the code that I have written I get an error that says that I have an illegal character at the beginning of...
Started by muckdog12 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
BOM use is optional, and, if used, should appear at the start ... .
Its code point is U+FEFF.
Http://en.wikipedia.org/wiki/Byte_order_mark
The byte order mark (BOM) is a Unicode character used to signal the endianness (byte order) of a text file or stream .
|
|
This is a hard question to ask because I'm positive I'm about to be bombarded with haters commenting on "if I can't write an operating system already, I won't ever to be able to write an operating system". Well I've read Modern OS by Tanembaum, Linux ...
Started by Philluminati on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It turns out that the line used to compile the app was explicitly set to compile to "aout" format which was what the guide said and what I assumed to be true.
The first few words of the .bin file.
|
Ask your Facebook Friends
|
I have a brand-new off-the-cd OSX 10.6 installation. I'd now like to compile the following trivial C program as a 64bit binary:
#include <stdio.h> int main() { printf("hello world"); return 0; }
I invoke gcc as follows:
gcc -m64 hello.c
However,...
Started by Daniel on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't know why this happens (works fine for me), but
Try compile with g++ , or link to libstdc is a 64-bit compile if you are really just off-the-cd then you should update and install a new xcode your hello.cc - using the C compiler....
|
|
I'm trying to compile a very old verion of slapd (the LDAP server) on cygwin. Previously this ran on a Linux box, but for reasons beyond my control it must be made to work on a Windows server. It has been suggested that we might use cygwin to compile ...
Started by Salim Fadhley on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The root cause seems to be
/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/ld: cannot find -luser32
This is either a problem with your cygwin installation, or the configure scripts are to old to recognise and handle the installation .
|
|
I've been learning C++ and Allegro using Code::Blocks on Windows XP, and recently felt like learning Vim. However, I have no idea how to compile a program "manually" (i.e., without using an IDE).
For compiling from within Vim, I have gotten as far as ...
Started by Caio on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If your program is simple (for example, one file ... .
Yes, you can compile without the makefile.
Manual Also, see this question: compile directly from vim
Mandatory edit: I don't use Windows or Cygwin problems with them on Windows platform.
|
|
I'm trying to build http://chitchat.at.infoseek.co.jp/vmware/vfd.html (VS 2008, Windows Server 2008 x64) however I'm getting the following error messages:
Error 1 error : 0x2 trying to open file <vfdmsg>. mc lib Error 2 error PRJ0019: A tool returned...
Started by Kragen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
My first.
As far as you said we can compile vfd with 64 bit via changing the code mc $(InputName) to mc $(InputFileName).
InputFileName)
Hello Kragen, I have a compile error which you had before..
|
|
I have a CUDA program that works fine, but that is currently all written in one file. I'd like to split this big file into several smaller ones, in order to make it easier to maintain and navigate.
The new structure is :
foo.cuh foo.cu bar.cuh bar.cu ...
Started by Wookai on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Change the "Generate....
To compile your .cu files to .obj files? It looks like you have modified the rules to link with cutil, whereas you should use the NVIDIA Cuda.rules to tell VS how to compile .cu to .obj, then modify", "Preprocessor".
|
|
I'm using Code::Blocks 8.02 and the mingw 5.1.6 compiler. I'm getting this error when I compile my Qt project:
C:\Documents and Settings\The Fuzz\Desktop\GUI\App_interface.cpp|33|undefined reference to `vtable for AddressBook'
File AddressBook.h:
#ifndef...
Started by TheFuzz on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
(It should have been generated for you -- you are running Qt's moc on your code before compiling, right?)
To answer a little....
The problem is almost certainly that you are not compiling or not linking in the generated moc_AddressBook.cpp file.
|
|
I'm trying to compile a project and I'm getting this error.
The error occurs in a RemObjects source file, but I think it doesn't have anything to do with RemObjects.
Anyway this error is too generic, and I don't quite get why it happens, so how can I ...
Started by Fabio Gomes on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If the problem persists, try to ....
Try to get the latest version, or recompile if you have the source.
You are probably using a (third-party) library that is compiled with a different version.
This error occurs if you mix libraries.
|