Google Code Exporter

Results 21406 comments of Google Code Exporter

``` Please see my comment on issue 85: http://code.google.com/p/ctemplate/issues/detail?id=85#c10 ``` Original comment by `[email protected]` on 4 Jun 2012 at 5:19

``` Compiling v2.2 with visual studio 2012 I have encountered the same warning: 1>D:\Projects\ctemplate-2.2\src\ctemplate/template.h(388): warning C4251: 'ctemplate::Template::resolved_filename_' : class 'std::basic_string' needs to have dll-interface to be used by clients of...

``` Any updates on this?? I'm getting the exact same error..any help would be much appreciated. Thanks. Tulio ``` Original comment by `[email protected]` on 19 Aug 2014 at 2:10 -...

``` I just went in and corrected it myself. What I did was to add following line to sendHttpPost() of HttpPostScheduler.java: ... conn.setRequestProperty("Content-Type","application/html"); ... ``` Original comment by `[email protected]` on...

``` Cheers!! ``` Original comment by `[email protected]` on 20 Aug 2014 at 8:20 - Added labels: **** - Removed labels: ****

``` ...... /usr/lib/llvm-3.0/include/llvm/Support/IRBuilder.h:1146:13: note: llvm::CallInst* llvm::IRBuilder::CreateCall(llvm::Value*, llvm::ArrayRef, const llvm::Twine&) [with bool preserveNames = true; T = llvm::ConstantFolder; Inserter = llvm::IRBuilderDefaultInserter] /usr/lib/llvm-3.0/include/llvm/Support/IRBuilder.h:1146:13: note: no known conversion for argument 2 from ‘std::vector::iterator...

``` llvm-lua-1.3.1 only supports LLVM 2.8 You need to use the latest git version of llvm-lua with LLVM 3.1 No version of llvm-lua will compile with LLVM 3.0. You will...

``` Thanks for the informative reply. I'm pretty novice to all this. I have both llvm 3.0 and 3.1 installed as well as the git version for llvm-lua. I assume...

``` There's a symlink in /usr/bin to /usr/lib/llvm-3.1/bin/llvm-config. When using cmake-gui the LLVM_CONFIG_EXECUTABLE field is changed to /usr/lib/llvm-3.1/bin/llvm-config and/or the same is done for LLVM_LD = /usr/lib/llvm-3.1/bin/llvm-ld This keeps pointing...

``` ok you will need to set the LLVM_CONFIG_EXECUTABLE cmake variable to point to llvm-config-3.1 either in the cmake-gui (ccmake for the console gui) or with cmake -D LLVM_CONFIG_EXECUTABLE:String=/usr/bin/llvm-config-3.1 .....