search for: export_fil

Displaying 5 results from an estimated 5 matches for "export_fil".

Did you mean: export_file
2014 Jul 23
2
[LLVMdev] [patch] EXPORTED_SYMBOL_FILE using mingw and cmake
...unlikely that > kitware will fix this anytime soon. Yes considering the age of that bug report the workaround is probably the best thing to do. At a glance this patch looks okay but I would change it slightly so - In the comments have a link to the bug you are working around - Quote "${export_file}" so we can handle paths with spaces in (I realise the old code didn't do that, but that is probably a mistake). Also could you use MINGW in your conditional like this so you only workaround the bug when necessary instead of all Windows platforms? ``` if(MINGW) # mingw workaround, as...
2014 Jun 17
2
[LLVMdev] [patch] EXPORTED_SYMBOL_FILE using mingw and cmake
Hi, this is my first post to this list, so please excuse if submitting a patch without previous discussion is considered bad form or anything similar. I encountered a bug in the CMake build while using MinGW (non-MSYS, non-CYGWIN) where the LTO_export fails with a "The syntax of the command is incorrect" error. This error was previously fixed for Windows in general using
2014 Jul 23
2
[LLVMdev] [patch] EXPORTED_SYMBOL_FILE using mingw and cmake
...mingw and cmake Okay I guess the test would be something like this then if (CMAKE_GENERATOR STREQUAL "MinGW Makefiles") # mingw workaround, as file(TO_NATIVE_PATH ...) is implemented incorrectly # See http://public.kitware.com/Bug/print_bug_page.php?bug_id=5939 string(REPLACE / \\ export_file_backslashes "${export_file}") else() file(TO_NATIVE_PATH "${export_file}" export_file_backslashes) endif() I've written this into patch applied against trunk. Could you test this (I don't use MinGW and don't have time to set it up) and confirm it works? It would...
2004 Mar 02
2
[PATCH] Force mountd(8) to a specified port.
...t(1); + } + } else + (void)bindresvport_sa(tcp6sock, NULL); listen(tcp6sock, SOMAXCONN); tcp6transp = svc_vc_create(tcp6sock, RPC_MAXDATASIZE, RPC_MAXDATASIZE); if (tcp6transp != NULL) { @@ -502,7 +555,8 @@ usage() { fprintf(stderr, - "usage: mountd [-2] [-d] [-l] [-n] [-r] [export_file]\n"); + "usage: mountd [-2] [-d] [-l] [-n] [-p <port>] [-r] " + "[export_file]\n"); exit(1); }
2010 Jan 22
0
Routing/File Upload/Put vs. Post puzzle
...sks which are not relevant right now. Here are snippets: routes.rb: map.maintain ''/maintain/import_file'', :controller => ''maintain'', :action => ''import_file'', :conditions => { :method => :put } map.maintain ''/maintain/export_file'', :controller => ''maintain'', :action => ''export_file'', :conditions => { :method => :put } map.maintain ''/maintain/:action'', :controller => ''maintain'' notes: I know this is too verbose, it''s...