X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fgnuobjccompiler.cpp;fp=source%2Fgnuobjccompiler.cpp;h=0000000000000000000000000000000000000000;hb=a4f02f02d4682c7f504e46ff2ce8f93035fd36dd;hp=16e5215c1c0d6528e9c12c7a4ef5a004d56d5bf5;hpb=cea2680b64eb10790f3b88a97bd0a4ed29d8a3b0;p=builder.git diff --git a/source/gnuobjccompiler.cpp b/source/gnuobjccompiler.cpp deleted file mode 100644 index 16e5215..0000000 --- a/source/gnuobjccompiler.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include "gnuobjccompiler.h" -#include "objcsourcefile.h" - -using namespace Msp; - -GnuObjCCompiler::GnuObjCCompiler(Builder &b, const Architecture &a, const FS::Path &sysroot): - GnuCompiler(b, a, "OBJC", sysroot) -{ - set_command("gcc", true); - input_suffixes.push_back(".m"); - build_info.libs.push_back("objc"); -} - -Target *GnuObjCCompiler::create_source(const Component &comp, const FS::Path &path) const -{ - return new ObjCSourceFile(builder, comp, path); -} - -Target *GnuObjCCompiler::create_source(const FS::Path &path) const -{ - return new ObjCSourceFile(builder, path); -}