Re: [CMake] Assembler flag support

2010-04-20 Thread Matthias Goesswein
Hello! I've submitted the bug report (http://public.kitware.com/Bug/view.php?id=10577) I also added an example project, which uses the gnu assembler, so you could reproduce the problem. Cheers, Matthias. Am 19.04.2010 22:32, schrieb Alexander Neundorf: On Friday 16 April 2010, Matthias G

Re: [CMake] Assembler flag support

2010-04-19 Thread Alexander Neundorf
On Friday 16 April 2010, Matthias Goesswein wrote: > Hello! > > >> Is there a variable like CMAKE_C_FLAGS_INIT for the assembler available? > >> (e.g. CMAKE_ASM${ASM_DIALECT}_FLAGS_INIT) > > > > Did you try this one ? > > I didn't add any explicit support for that, but I think this should work > >

Re: [CMake] Assembler flag support

2010-04-16 Thread Matthias Goesswein
Hello! Is there a variable like CMAKE_C_FLAGS_INIT for the assembler available? (e.g. CMAKE_ASM${ASM_DIALECT}_FLAGS_INIT) Did you try this one ? I didn't add any explicit support for that, but I think this should work autoamtically for any language support by cmake (if it doesn't, I'll fix it

Re: [CMake] Assembler flag support

2010-04-15 Thread Alexander Neundorf
On Thursday 15 April 2010, Matthias Goesswein wrote: > Hello! > > Is there a variable like CMAKE_C_FLAGS_INIT for the assembler available? > > (e.g. CMAKE_ASM${ASM_DIALECT}_FLAGS_INIT) Did you try this one ? I didn't add any explicit support for that, but I think this should work autoamtically fo

[CMake] Assembler flag support

2010-04-15 Thread Matthias Goesswein
Hello! Is there a variable like CMAKE_C_FLAGS_INIT for the assembler available? (e.g. CMAKE_ASM${ASM_DIALECT}_FLAGS_INIT) Which flags are passed to in the Rule variable for creating an object file from an assembler source: SET(CMAKE_ASM${ASM_DIALECT}_COMPILE_OBJECT " -o ") I'm using CM