I have the following line in my CMakeLists.txt file:
set_target_properties(native-lib PROPERTIES COMPILE_FLAGS "-save-temps")
This tells the compiler to preserve the assembly in a *.s file.
I need to know how to make this include the assembly listing though.
i.e. Have the C source beside the assembly in the *.s file.
I believe this is normally done with the -l flag but it doesn't seem to work.
Any ideas?