I am creating a platform file for the Radisys OS9 embedded cross compiler.  The 
executable link line needs to look like:
xcc source.o -fd=target -lmylib/mylib.l
 
I figured out that I needed to add this to my Generic_XCC.cmake platform file
SET(CMAKE_LINK_LIBRARY_FILE_FLAG "-l")
 
but the problem is that cmake generates a space after the -l directive
xcc source.o -fd=target -l mylib/mylib.l
 
Any ideas as to how I could remove that space after the -l?
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to