-
Notifications
You must be signed in to change notification settings - Fork 5
Example GCC
manast edited this page Sep 13, 2010
·
3 revisions
[meta] TITLE = GCC (standard) DESCRIPTION = Standard GCC compiler definition using gcc, g++, ar and ranlib. [setup] CC = 'gcc' CXX = 'g++' CCCOM = '%CC %CFLAGS %CPPDEFINES %INCPATHS -c %SOURCES -o %TARGET' CXXCOM = '%CXX %CFLAGS %CPPDEFINES %INCPATHS -c %SOURCES -o %TARGET' CFILESUFFIX = '.c' CXXFILESUFFIX = '.cpp' CPPDEFSUFFIX = '' OBJSUFFIX = '.o' INCPREFIX = '-I"' INCSUFFIX = '"' CPPDEFPREFIX = '-D' LIBPREFIX = '' LIBSUFFIX = '.a' AR = 'ar' ARCOM = '%AR r %TARGET %SOURCES' RANLIB = 'ranlib'