Sync to trunk r38250
[reactos.git] / reactos / tools / rbuild / backend / mingw / modulehandler.cpp
1 /*
2 * Copyright (C) 2005 Casper S. Hornstrup
3 * 2007-2008 Hervé Poussineau
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19 #include "../../pch.h"
20 #include <assert.h>
21 #include <algorithm>
22
23 #include "../../rbuild.h"
24 #include "mingw.h"
25 #include "modulehandler.h"
26 #include "rule.h"
27
28 using std::set;
29 using std::string;
30 using std::vector;
31
32 #define CLEAN_FILE(f) clean_files.push_back ( (f).name.length () > 0 ? backend->GetFullName ( f ) : backend->GetFullPath ( f ) );
33 #define IsStaticLibrary( module ) ( ( module.type == StaticLibrary ) || ( module.type == HostStaticLibrary ) )
34
35 #if (ARCH == amd64)
36 #define DEBUG_FORMAT " -gdwarf-2"
37 #else
38 #define DEBUG_FORMAT " -gstabs+"
39 #endif
40
41 MingwBackend*
42 MingwModuleHandler::backend = NULL;
43 FILE*
44 MingwModuleHandler::fMakefile = NULL;
45
46 string
47 PrefixFilename (
48 const string& filename,
49 const string& prefix )
50 {
51 if ( !prefix.length() )
52 return filename;
53 string out;
54 const char* pfilename = filename.c_str();
55 const char* p1 = strrchr ( pfilename, '/' );
56 const char* p2 = strrchr ( pfilename, '\\' );
57 if ( p1 || p2 )
58 {
59 if ( p2 > p1 )
60 p1 = p2;
61 out += string(pfilename,p1-pfilename) + cSep;
62 pfilename = p1 + 1;
63 }
64 out += prefix + pfilename;
65 return out;
66 }
67
68 string
69 GetTargetMacro ( const Module& module, bool with_dollar )
70 {
71 string s ( module.name );
72 strupr ( &s[0] );
73 s += "_TARGET";
74 if ( with_dollar )
75 return ssprintf ( "$(%s)", s.c_str() );
76 return s;
77 }
78
79 MingwModuleHandler::MingwModuleHandler (
80 const Module& module_ )
81
82 : module(module_)
83 {
84 use_pch = false;
85 }
86
87 MingwModuleHandler::~MingwModuleHandler()
88 {
89 }
90
91 /*static*/ void
92 MingwModuleHandler::SetBackend ( MingwBackend* backend_ )
93 {
94 backend = backend_;
95 }
96
97 /*static*/ void
98 MingwModuleHandler::SetMakefile ( FILE* f )
99 {
100 fMakefile = f;
101 }
102
103 void
104 MingwModuleHandler::EnablePreCompiledHeaderSupport ()
105 {
106 use_pch = true;
107 }
108
109 /*static*/ const FileLocation*
110 MingwModuleHandler::PassThruCacheDirectory (const FileLocation* file )
111 {
112 switch ( file->directory )
113 {
114 case SourceDirectory:
115 break;
116 case IntermediateDirectory:
117 backend->AddDirectoryTarget ( file->relative_path, backend->intermediateDirectory );
118 break;
119 case OutputDirectory:
120 backend->AddDirectoryTarget ( file->relative_path, backend->outputDirectory );
121 break;
122 case InstallDirectory:
123 backend->AddDirectoryTarget ( file->relative_path, backend->installDirectory );
124 break;
125 default:
126 throw InvalidOperationException ( __FILE__,
127 __LINE__,
128 "Invalid directory %d.",
129 file->directory );
130 }
131
132 return file;
133 }
134
135 /* caller needs to delete the returned object */
136 const FileLocation*
137 MingwModuleHandler::GetTargetFilename (
138 const Module& module,
139 string_list* pclean_files )
140 {
141 FileLocation *target = new FileLocation ( *module.output );
142 if ( pclean_files )
143 {
144 string_list& clean_files = *pclean_files;
145 CLEAN_FILE ( *target );
146 }
147 return target;
148 }
149
150 /* caller needs to delete the returned object */
151 const FileLocation*
152 MingwModuleHandler::GetImportLibraryFilename (
153 const Module& module,
154 string_list* pclean_files )
155 {
156 FileLocation *target = new FileLocation ( *module.dependency );
157 if ( pclean_files )
158 {
159 string_list& clean_files = *pclean_files;
160 CLEAN_FILE ( *target );
161 }
162 return target;
163 }
164
165 /* caller needs to delete the returned object */
166 MingwModuleHandler*
167 MingwModuleHandler::InstanciateHandler (
168 const Module& module,
169 MingwBackend* backend )
170 {
171 MingwModuleHandler* handler;
172 switch ( module.type )
173 {
174 case StaticLibrary:
175 case HostStaticLibrary:
176 case ObjectLibrary:
177 case RpcServer:
178 case RpcClient:
179 case RpcProxy:
180 case MessageHeader:
181 case IdlHeader:
182 case EmbeddedTypeLib:
183 case BootSector:
184 handler = new MingwModuleHandler( module );
185 break;
186 case BuildTool:
187 handler = new MingwBuildToolModuleHandler ( module );
188 break;
189 case Kernel:
190 handler = new MingwKernelModuleHandler ( module );
191 break;
192 case NativeCUI:
193 handler = new MingwNativeCUIModuleHandler ( module );
194 break;
195 case Win32CUI:
196 handler = new MingwWin32CUIModuleHandler ( module );
197 break;
198 case Win32SCR:
199 case Win32GUI:
200 handler = new MingwWin32GUIModuleHandler ( module );
201 break;
202 case KeyboardLayout:
203 case KernelModeDLL:
204 case KernelModeDriver:
205 handler = new MingwKernelModeDLLModuleHandler ( module );
206 break;
207 case NativeDLL:
208 handler = new MingwNativeDLLModuleHandler ( module );
209 break;
210 case Win32DLL:
211 handler = new MingwWin32DLLModuleHandler ( module );
212 break;
213 case Win32OCX:
214 handler = new MingwWin32OCXModuleHandler ( module );
215 break;
216 case BootLoader:
217 handler = new MingwBootLoaderModuleHandler ( module );
218 break;
219 case BootProgram:
220 handler = new MingwBootProgramModuleHandler ( module );
221 break;
222 case Iso:
223 handler = new MingwIsoModuleHandler ( module );
224 break;
225 case LiveIso:
226 handler = new MingwLiveIsoModuleHandler ( module );
227 break;
228 case IsoRegTest:
229 handler = new MingwIsoModuleHandler ( module );
230 break;
231 case LiveIsoRegTest:
232 handler = new MingwLiveIsoModuleHandler ( module );
233 break;
234 case Test:
235 handler = new MingwTestModuleHandler ( module );
236 break;
237 case Alias:
238 handler = new MingwAliasModuleHandler ( module );
239 break;
240 case Cabinet:
241 handler = new MingwCabinetModuleHandler ( module );
242 break;
243 case ElfExecutable:
244 handler = new MingwElfExecutableModuleHandler ( module );
245 break;
246 default:
247 throw UnknownModuleTypeException (
248 module.node.location,
249 module.type );
250 break;
251 }
252 return handler;
253 }
254
255 string
256 MingwModuleHandler::GetWorkingDirectory () const
257 {
258 return ".";
259 }
260
261 string
262 MingwModuleHandler::GetBasename ( const string& filename ) const
263 {
264 size_t index = filename.find_last_of ( '.' );
265 if ( index != string::npos )
266 return filename.substr ( 0, index );
267 return "";
268 }
269
270 string
271 MingwModuleHandler::GetCompilationUnitDependencies (
272 const CompilationUnit& compilationUnit ) const
273 {
274 if ( compilationUnit.GetFiles ().size () <= 1 )
275 return "";
276 vector<string> sourceFiles;
277 for ( size_t i = 0; i < compilationUnit.GetFiles ().size (); i++ )
278 {
279 const File& file = *compilationUnit.GetFiles ()[i];
280 sourceFiles.push_back ( backend->GetFullName ( file.file ) );
281 }
282 return string ( " " ) + v2s ( sourceFiles, 10 );
283 }
284
285 /* caller needs to delete the returned object */
286 const FileLocation*
287 MingwModuleHandler::GetModuleArchiveFilename () const
288 {
289 if ( IsStaticLibrary ( module ) )
290 return GetTargetFilename ( module, NULL );
291 return new FileLocation ( IntermediateDirectory,
292 module.output->relative_path,
293 ReplaceExtension ( module.name, ".temp.a" ) );
294 }
295
296 /*static*/ bool
297 MingwModuleHandler::ReferenceObjects (
298 const Module& module )
299 {
300 if ( module.type == ObjectLibrary )
301 return true;
302 if ( module.type == RpcServer )
303 return true;
304 if ( module.type == RpcClient )
305 return true;
306 if ( module.type == RpcProxy )
307 return true;
308 if ( module.type == IdlHeader )
309 return true;
310 if ( module.type == MessageHeader)
311 return true;
312 return false;
313 }
314
315 void
316 MingwModuleHandler::OutputCopyCommand ( const FileLocation& source,
317 const FileLocation& destination )
318 {
319 fprintf ( fMakefile, "# OUTPUT COPY COMMAND\n" );
320 fprintf ( fMakefile,
321 "\t$(ECHO_CP)\n" );
322 fprintf ( fMakefile,
323 "\t${cp} %s %s 1>$(NUL)\n",
324 backend->GetFullName ( source ).c_str (),
325 backend->GetFullName ( *PassThruCacheDirectory ( &destination ) ).c_str () );
326 }
327
328 string
329 MingwModuleHandler::GetImportLibraryDependency (
330 const Module& importedModule )
331 {
332 string dep;
333 if ( ReferenceObjects ( importedModule ) )
334 {
335 const vector<CompilationUnit*>& compilationUnits = importedModule.non_if_data.compilationUnits;
336 size_t i;
337
338 dep = GetTargetMacro ( importedModule );
339 for ( i = 0; i < compilationUnits.size (); i++ )
340 {
341 CompilationUnit& compilationUnit = *compilationUnits[i];
342 const FileLocation& compilationName = compilationUnit.GetFilename ();
343 const FileLocation *objectFilename = GetObjectFilename ( &compilationName, importedModule );
344 if ( GetExtension ( *objectFilename ) == ".h" )
345 dep += ssprintf ( " $(%s_HEADERS)", importedModule.name.c_str () );
346 else if ( GetExtension ( *objectFilename ) == ".rc" )
347 dep += ssprintf ( " $(%s_MCHEADERS)", importedModule.name.c_str () );
348 }
349 }
350 else
351 {
352 const FileLocation *library_target = GetImportLibraryFilename ( importedModule, NULL );
353 dep = backend->GetFullName ( *library_target );
354 delete library_target;
355 }
356
357 if ( IsStaticLibrary ( importedModule ) || importedModule.type == ObjectLibrary )
358 {
359 const std::vector<Library*>& libraries = importedModule.non_if_data.libraries;
360
361 for ( size_t i = 0; i < libraries.size (); ++ i )
362 {
363 dep += " ";
364 dep += GetImportLibraryDependency ( *libraries[i]->importedModule );
365 }
366 }
367
368 return dep;
369 }
370
371 void
372 MingwModuleHandler::GetTargets ( const Module& dependencyModule,
373 string_list& targets )
374 {
375 if ( dependencyModule.invocations.size () > 0 )
376 {
377 for ( size_t i = 0; i < dependencyModule.invocations.size (); i++ )
378 {
379 Invoke& invoke = *dependencyModule.invocations[i];
380 invoke.GetTargets ( targets );
381 }
382 }
383 else
384 targets.push_back ( GetImportLibraryDependency ( dependencyModule ) );
385 }
386
387 void
388 MingwModuleHandler::GetModuleDependencies (
389 string_list& dependencies )
390 {
391 size_t iend = module.dependencies.size ();
392
393 if ( iend == 0 )
394 return;
395
396 for ( size_t i = 0; i < iend; i++ )
397 {
398 const Dependency& dependency = *module.dependencies[i];
399 const Module& dependencyModule = *dependency.dependencyModule;
400 GetTargets ( dependencyModule,
401 dependencies );
402 }
403 vector<FileLocation> v;
404 GetDefinitionDependencies ( v );
405
406 for ( size_t i = 0; i < v.size (); i++ )
407 {
408 const FileLocation& file = v[i];
409 dependencies.push_back ( backend->GetFullName ( file ) );
410 }
411 }
412
413 /* caller needs to delete the returned object */
414 const FileLocation*
415 MingwModuleHandler::GetObjectFilename (
416 const FileLocation* sourceFile,
417 const Module& module ) const
418 {
419 DirectoryLocation destination_directory;
420 string newExtension;
421 string extension = GetExtension ( *sourceFile );
422
423 if ( module.type == BootSector )
424 return new FileLocation ( *module.output );
425 else if (extension == ".rc")
426 newExtension = "_" + module.name + ".coff";
427 else if (extension == ".mc")
428 newExtension = ".rc";
429 else if (extension == ".idl")
430 {
431 if ( module.type == RpcServer )
432 newExtension = "_s.o";
433 else if ( module.type == RpcClient )
434 newExtension = "_c.o";
435 else if ( module.type == RpcProxy )
436 newExtension = "_p.o";
437 else
438 newExtension = ".h";
439 }
440 else
441 newExtension = "_" + module.name + ".o";
442
443 if ( module.type == BootSector )
444 destination_directory = OutputDirectory;
445 else
446 destination_directory = IntermediateDirectory;
447
448 const FileLocation *obj_file = new FileLocation(
449 destination_directory,
450 sourceFile->relative_path,
451 ReplaceExtension ( sourceFile->name, newExtension ) );
452 PassThruCacheDirectory ( obj_file );
453
454 return obj_file;
455 }
456
457 string
458 MingwModuleHandler::GetModuleCleanTarget ( const Module& module ) const
459 {
460 return module.name + "_clean";
461 }
462
463 void
464 MingwModuleHandler::GetReferencedObjectLibraryModuleCleanTargets ( vector<string>& moduleNames ) const
465 {
466 for ( size_t i = 0; i < module.non_if_data.libraries.size (); i++ )
467 {
468 Library& library = *module.non_if_data.libraries[i];
469 if ( library.importedModule->type == ObjectLibrary )
470 moduleNames.push_back ( GetModuleCleanTarget ( *library.importedModule ) );
471 }
472 }
473
474 void
475 MingwModuleHandler::GenerateCleanTarget () const
476 {
477 if ( module.type == Alias )
478 return;
479
480 fprintf ( fMakefile, "# CLEAN TARGET\n" );
481 fprintf ( fMakefile,
482 ".PHONY: %s_clean\n",
483 module.name.c_str() );
484 vector<string> referencedModuleNames;
485 GetReferencedObjectLibraryModuleCleanTargets ( referencedModuleNames );
486 fprintf ( fMakefile,
487 "%s: %s\n\t-@${rm}",
488 GetModuleCleanTarget ( module ).c_str(),
489 v2s ( referencedModuleNames, 10 ).c_str () );
490 for ( size_t i = 0; i < clean_files.size(); i++ )
491 {
492 if ( ( i + 1 ) % 10 == 9 )
493 fprintf ( fMakefile, " 2>$(NUL)\n\t-@${rm}" );
494 fprintf ( fMakefile, " %s", clean_files[i].c_str() );
495 }
496 fprintf ( fMakefile, " 2>$(NUL)\n" );
497
498 if( ProxyMakefile::GenerateProxyMakefile(module) )
499 {
500 DirectoryLocation root;
501
502 if ( backend->configuration.GenerateProxyMakefilesInSourceTree )
503 root = SourceDirectory;
504 else
505 root = OutputDirectory;
506
507 FileLocation proxyMakefile ( root,
508 module.output->relative_path,
509 "GNUmakefile" );
510 fprintf ( fMakefile, "\t-@${rm} %s 2>$(NUL)\n",
511 backend->GetFullName ( proxyMakefile ).c_str () );
512 }
513
514 fprintf ( fMakefile, "clean: %s_clean\n\n", module.name.c_str() );
515 }
516
517 void
518 MingwModuleHandler::GenerateInstallTarget () const
519 {
520 if ( !module.install )
521 return;
522 fprintf ( fMakefile, "# INSTALL TARGET\n" );
523 fprintf ( fMakefile, ".PHONY: %s_install\n", module.name.c_str() );
524 fprintf ( fMakefile,
525 "%s_install: %s\n",
526 module.name.c_str (),
527 backend->GetFullName ( *module.install ).c_str () );
528 }
529
530 void
531 MingwModuleHandler::GenerateDependsTarget () const
532 {
533 fprintf ( fMakefile, "# DEPENDS TARGET\n" );
534 fprintf ( fMakefile,
535 ".PHONY: %s_depends\n",
536 module.name.c_str() );
537 fprintf ( fMakefile,
538 "%s_depends: $(RBUILD_TARGET)\n",
539 module.name.c_str () );
540 fprintf ( fMakefile,
541 "\t$(ECHO_RBUILD)\n" );
542 fprintf ( fMakefile,
543 "\t$(Q)$(RBUILD_TARGET) $(RBUILD_FLAGS) -dm%s mingw\n",
544 module.name.c_str () );
545 }
546
547 /* static */ string
548 MingwModuleHandler::GenerateGccDefineParametersFromVector (
549 const vector<Define*>& defines,
550 set<string>& used_defs)
551 {
552 string parameters;
553
554 for ( size_t i = 0; i < defines.size (); i++ )
555 {
556 Define& define = *defines[i];
557 if (used_defs.find(define.name) != used_defs.end())
558 continue;
559 if (parameters.length () > 0)
560 parameters += " ";
561 if (define.name.find('(') != string::npos)
562 parameters += "$(QT)";
563 parameters += "-D";
564 parameters += define.name;
565 if (define.value.length () > 0)
566 {
567 parameters += "=";
568 parameters += define.value;
569 }
570 if (define.name.find('(') != string::npos)
571 parameters += "$(QT)";
572 used_defs.insert(used_defs.begin(),define.name);
573 }
574 return parameters;
575 }
576
577 string
578 MingwModuleHandler::ConcatenatePaths (
579 const string& path1,
580 const string& path2 ) const
581 {
582 if ( ( path1.length () == 0 ) || ( path1 == "." ) || ( path1 == "./" ) )
583 return path2;
584 if ( path1[path1.length ()] == cSep )
585 return path1 + path2;
586 else
587 return path1 + cSep + path2;
588 }
589
590 /* static */ string
591 MingwModuleHandler::GenerateGccIncludeParametersFromVector ( const vector<Include*>& includes )
592 {
593 string parameters, path_prefix;
594 for ( size_t i = 0; i < includes.size (); i++ )
595 {
596 Include& include = *includes[i];
597 if ( parameters.length () > 0 )
598 parameters += " ";
599 parameters += "-I" + backend->GetFullPath ( *include.directory );;
600 }
601 return parameters;
602 }
603
604 string
605 MingwModuleHandler::GenerateCompilerParametersFromVector ( const vector<CompilerFlag*>& compilerFlags, const CompilerType type ) const
606 {
607 string parameters;
608 for ( size_t i = 0; i < compilerFlags.size (); i++ )
609 {
610 CompilerFlag& compilerFlag = *compilerFlags[i];
611 if ( compilerFlag.compiler == type )
612 parameters += " " + compilerFlag.flag;
613 }
614 return parameters;
615 }
616
617 string
618 MingwModuleHandler::GenerateLinkerParametersFromVector ( const vector<LinkerFlag*>& linkerFlags ) const
619 {
620 string parameters;
621 for ( size_t i = 0; i < linkerFlags.size (); i++ )
622 {
623 LinkerFlag& linkerFlag = *linkerFlags[i];
624 if ( parameters.length () > 0 )
625 parameters += " ";
626 parameters += linkerFlag.flag;
627 }
628 return parameters;
629 }
630
631 string
632 MingwModuleHandler::GenerateImportLibraryDependenciesFromVector (
633 const vector<Library*>& libraries )
634 {
635 string dependencies ( "" );
636 int wrap_count = 0;
637 for ( size_t i = 0; i < libraries.size (); i++ )
638 {
639 if ( wrap_count++ == 5 )
640 dependencies += " \\\n\t\t", wrap_count = 0;
641 else if ( dependencies.size () > 0 )
642 dependencies += " ";
643 dependencies += GetImportLibraryDependency ( *libraries[i]->importedModule );
644 }
645 return dependencies;
646 }
647
648 string
649 MingwModuleHandler::GenerateLinkerParameters () const
650 {
651 return GenerateLinkerParametersFromVector ( module.linkerFlags );
652 }
653
654 void
655 MingwModuleHandler::GenerateMacro (
656 const char* assignmentOperation,
657 const string& macro,
658 const IfableData& data,
659 set<const Define *> *used_defs,
660 bool generatingCompilerMacro )
661 {
662 size_t i;
663 bool generateAssignment;
664
665 generateAssignment = (use_pch && module.pch != NULL ) || data.includes.size () > 0 || data.defines.size () > 0;
666 if ( generatingCompilerMacro )
667 generateAssignment |= data.compilerFlags.size () > 0;
668 if ( generateAssignment )
669 {
670 fprintf ( fMakefile,
671 "%s %s",
672 macro.c_str(),
673 assignmentOperation );
674 }
675
676 const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
677 if ( pchFilename )
678 {
679 fprintf ( fMakefile,
680 " -I%s",
681 backend->GetFullPath ( *pchFilename ).c_str () );
682 delete pchFilename;
683 }
684
685 if ( generatingCompilerMacro )
686 {
687 string compilerParameters = GenerateCompilerParametersFromVector ( data.compilerFlags, CompilerTypeDontCare );
688 if ( compilerParameters.size () > 0 )
689 {
690 fprintf (
691 fMakefile,
692 "%s",
693 compilerParameters.c_str () );
694 }
695 }
696 for ( i = 0; i < data.includes.size(); i++ )
697 {
698 const Include& include = *data.includes[i];
699 const FileLocation* includeDirectory = include.directory;
700 fprintf (
701 fMakefile,
702 " -I%s",
703 backend->GetFullPath ( *includeDirectory ).c_str() );
704 }
705 for ( i = 0; i < data.defines.size(); i++ )
706 {
707 const Define& define = *data.defines[i];
708 if ( used_defs )
709 {
710 set<const Define *>::const_iterator last_define;
711 for (last_define = used_defs->begin ();
712 last_define != used_defs->end ();
713 last_define++)
714 {
715 if ( (*last_define)->name != define.name )
716 continue;
717 if ( !define.overridable )
718 {
719 throw InvalidOperationException ( (*last_define)->node->location.c_str (),
720 0,
721 "Invalid override of define '%s', already defined at %s",
722 define.name.c_str (),
723 define.node->location.c_str () );
724 }
725 if ( backend->configuration.Verbose )
726 printf("%s: Overriding '%s' already defined at %s\n",
727 (*last_define)->node->location.c_str (), define.name.c_str (),
728 define.node->location.c_str () );
729 break;
730 }
731 if ( last_define != used_defs->end () )
732 continue;
733 }
734 fprintf (
735 fMakefile,
736 " -D%s",
737 define.name.c_str() );
738 if (define.value.length () > 0)
739 fprintf (
740 fMakefile,
741 "=%s",
742 define.value.c_str() );
743 if ( used_defs )
744 used_defs->insert( used_defs->begin (), &define );
745 }
746 if ( generateAssignment )
747 {
748 fprintf ( fMakefile, "\n" );
749 }
750 }
751
752 void
753 MingwModuleHandler::GenerateMacros (
754 const char* assignmentOperation,
755 const IfableData& data,
756 const vector<LinkerFlag*>* linkerFlags,
757 set<const Define *>& used_defs )
758 {
759 fprintf ( fMakefile, "# MACROS\n" );
760 GenerateMacro ( assignmentOperation,
761 commonflagsMacro,
762 data,
763 &used_defs,
764 true );
765 GenerateMacro ( assignmentOperation,
766 windresflagsMacro,
767 data,
768 NULL,
769 false );
770
771 if ( linkerFlags != NULL )
772 {
773 string linkerParameters = GenerateLinkerParametersFromVector ( *linkerFlags );
774 if ( linkerParameters.size () > 0 )
775 {
776 fprintf (
777 fMakefile,
778 "%s %s %s\n",
779 linkerflagsMacro.c_str (),
780 assignmentOperation,
781 linkerParameters.c_str() );
782 }
783 }
784
785 if ( data.libraries.size () > 0 )
786 {
787 string deps = GenerateImportLibraryDependenciesFromVector ( data.libraries );
788 if ( deps.size () > 0 )
789 {
790 fprintf (
791 fMakefile,
792 "%s %s %s\n",
793 libsMacro.c_str(),
794 assignmentOperation,
795 deps.c_str() );
796 }
797 }
798 }
799
800 void
801 MingwModuleHandler::CleanupCompilationUnitVector ( vector<CompilationUnit*>& compilationUnits )
802 {
803 for ( size_t i = 0; i < compilationUnits.size (); i++ )
804 delete compilationUnits[i];
805 }
806
807 void
808 MingwModuleHandler::GetModuleSpecificCompilationUnits ( vector<CompilationUnit*>& compilationUnits )
809 {
810 }
811
812 void
813 MingwModuleHandler::GenerateSourceMacros (
814 const IfableData& data )
815 {
816 size_t i;
817
818 fprintf ( fMakefile, "# SOURCE MACROS\n" );
819 const vector<CompilationUnit*>& compilationUnits = data.compilationUnits;
820 vector<const FileLocation *> headers;
821 if ( compilationUnits.size () > 0 )
822 {
823 fprintf (
824 fMakefile,
825 "%s =",
826 sourcesMacro.c_str () );
827 for ( i = 0; i < compilationUnits.size(); i++ )
828 {
829 CompilationUnit& compilationUnit = *compilationUnits[i];
830 const FileLocation& compilationName = compilationUnit.GetFilename ();
831 fprintf (
832 fMakefile,
833 "%s%s",
834 ( i%10 == 9 ? " \\\n\t" : " " ),
835 backend->GetFullName ( compilationName ).c_str () );
836 }
837 fprintf ( fMakefile, "\n" );
838 }
839
840 vector<CompilationUnit*> sourceCompilationUnits;
841 GetModuleSpecificCompilationUnits ( sourceCompilationUnits );
842 for ( i = 0; i < sourceCompilationUnits.size (); i++ )
843 {
844 const FileLocation& compilationName = sourceCompilationUnits[i]->GetFilename ();
845 fprintf (
846 fMakefile,
847 "%s += %s\n",
848 sourcesMacro.c_str(),
849 backend->GetFullName ( compilationName ).c_str () );
850 }
851 CleanupCompilationUnitVector ( sourceCompilationUnits );
852 }
853
854 void
855 MingwModuleHandler::GenerateObjectMacros (
856 const IfableData& data )
857 {
858 size_t i;
859 const char* assignmentOperation = "=";
860
861 const vector<CompilationUnit*>& compilationUnits = data.compilationUnits;
862 vector<const FileLocation *> headers;
863 vector<const FileLocation *> mcheaders;
864 vector<const FileLocation *> mcresources;
865 fprintf ( fMakefile, "# OBJECT MACROS\n" );
866 if ( compilationUnits.size () > 0 )
867 {
868 for ( i = 0; i < compilationUnits.size (); i++ )
869 {
870 CompilationUnit& compilationUnit = *compilationUnits[i];
871 if ( compilationUnit.IsFirstFile () )
872 {
873 const FileLocation& compilationName = compilationUnit.GetFilename ();
874 const FileLocation *object_file = GetObjectFilename ( &compilationName, module );
875 fprintf ( fMakefile,
876 "%s := %s\n",
877 objectsMacro.c_str(),
878 backend->GetFullName ( *object_file ).c_str () );
879 delete object_file;
880 assignmentOperation = "+=";
881 break;
882 }
883 }
884 fprintf (
885 fMakefile,
886 "%s %s",
887 objectsMacro.c_str (),
888 assignmentOperation );
889 for ( i = 0; i < compilationUnits.size(); i++ )
890 {
891 CompilationUnit& compilationUnit = *compilationUnits[i];
892 if ( !compilationUnit.IsFirstFile () )
893 {
894 const FileLocation& compilationName = compilationUnit.GetFilename ();
895 const FileLocation *objectFilename = GetObjectFilename ( &compilationName, module );
896 if ( GetExtension ( *objectFilename ) == ".h" )
897 headers.push_back ( objectFilename );
898 else if ( GetExtension ( *objectFilename ) == ".rc" )
899 {
900 const FileLocation *headerFilename = GetMcHeaderFilename ( &compilationUnit.GetFilename () );
901 mcheaders.push_back ( headerFilename );
902 mcresources.push_back ( objectFilename );
903 }
904 else
905 {
906 fprintf (
907 fMakefile,
908 "%s%s",
909 ( i%10 == 9 ? " \\\n\t" : " " ),
910 backend->GetFullName ( *objectFilename ).c_str () );
911 delete objectFilename;
912 }
913 }
914 }
915 fprintf ( fMakefile, "\n" );
916 }
917 if ( headers.size () > 0 )
918 {
919 fprintf (
920 fMakefile,
921 "%s_HEADERS %s",
922 module.name.c_str (),
923 assignmentOperation );
924 for ( i = 0; i < headers.size (); i++ )
925 {
926 fprintf (
927 fMakefile,
928 "%s%s",
929 ( i%10 == 9 ? " \\\n\t" : " " ),
930 backend->GetFullName ( *headers[i] ).c_str () );
931 delete headers[i];
932 }
933 fprintf ( fMakefile, "\n" );
934 }
935
936 if ( mcheaders.size () > 0 )
937 {
938 fprintf (
939 fMakefile,
940 "%s_MCHEADERS %s",
941 module.name.c_str (),
942 assignmentOperation );
943 for ( i = 0; i < mcheaders.size (); i++ )
944 {
945 fprintf (
946 fMakefile,
947 "%s%s",
948 ( i%10 == 9 ? " \\\n\t" : " " ),
949 backend->GetFullName ( *mcheaders[i] ).c_str () );
950 delete mcheaders[i];
951 }
952 fprintf ( fMakefile, "\n" );
953 }
954
955 if ( mcresources.size () > 0 )
956 {
957 fprintf (
958 fMakefile,
959 "%s_RESOURCES %s",
960 module.name.c_str (),
961 assignmentOperation );
962 for ( i = 0; i < mcresources.size (); i++ )
963 {
964 fprintf (
965 fMakefile,
966 "%s%s",
967 ( i%10 == 9 ? " \\\n\t" : " " ),
968 backend->GetFullName ( *mcresources[i] ).c_str () );
969 delete mcresources[i];
970 }
971 fprintf ( fMakefile, "\n" );
972 }
973
974 vector<CompilationUnit*> sourceCompilationUnits;
975 GetModuleSpecificCompilationUnits ( sourceCompilationUnits );
976 for ( i = 0; i < sourceCompilationUnits.size (); i++ )
977 {
978 const FileLocation& compilationName = sourceCompilationUnits[i]->GetFilename ();
979 const FileLocation *object_file = GetObjectFilename ( &compilationName, module );
980 fprintf (
981 fMakefile,
982 "%s += %s\n",
983 objectsMacro.c_str(),
984 backend->GetFullName ( *object_file ).c_str () );
985 delete object_file;
986 }
987 CleanupCompilationUnitVector ( sourceCompilationUnits );
988
989 if ( IsSpecDefinitionFile() )
990 {
991 const FileLocation *stubs_file = new FileLocation(
992 IntermediateDirectory,
993 module.importLibrary->source->relative_path,
994 ReplaceExtension ( module.importLibrary->source->name, "_" + module.name + ".stubs.o" ) );
995
996 fprintf (
997 fMakefile,
998 "%s += %s\n",
999 objectsMacro.c_str(),
1000 backend->GetFullName ( *stubs_file ).c_str () );
1001
1002 delete stubs_file;
1003 }
1004 }
1005
1006 /* caller needs to delete the returned object */
1007 const FileLocation*
1008 MingwModuleHandler::GetPrecompiledHeaderFilename () const
1009 {
1010 if ( !module.pch || !use_pch )
1011 return NULL;
1012 return new FileLocation ( IntermediateDirectory,
1013 module.pch->file->relative_path + "/.gch_" + module.name,
1014 module.pch->file->name + ".gch" );
1015 }
1016
1017 Rule arRule1 ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).a: $($(module_name)_OBJS) $(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n",
1018 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).a",
1019 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1020 Rule arRule2 ( "\t$(ECHO_AR)\n"
1021 "\t${ar} -rc $@ $($(module_name)_OBJS)\n",
1022 NULL );
1023 Rule arHostRule2 ( "\t$(ECHO_AR)\n"
1024 "\t${host_ar} -rc $@ $($(module_name)_OBJS)\n",
1025 NULL );
1026 Rule gasRule ( "$(source): ${$(module_name)_precondition}\n"
1027 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1028 "\t$(ECHO_GAS)\n"
1029 "\t${gcc} -x assembler-with-cpp -o $@ -D__ASM__ $($(module_name)_CFLAGS) -c $<\n",
1030 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o",
1031 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1032 Rule bootRule ( "$(source): ${$(module_name)_precondition}\n"
1033 "$(module_output): $(source)$(dependencies) | $(OUTPUT)$(SEP)$(source_dir)\n"
1034 "\t$(ECHO_NASM)\n"
1035 "\t$(Q)${nasm} -f win32 $< -o $@ $($(module_name)_NASMFLAGS)\n",
1036 "$(OUTPUT)$(SEP)$(source_dir)$(SEP)", NULL );
1037 Rule nasmRule ( "$(source): ${$(module_name)_precondition}\n"
1038 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1039 "\t$(ECHO_NASM)\n"
1040 "\t$(Q)${nasm} -f win32 $< -o $@ $($(module_name)_NASMFLAGS)\n",
1041 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o",
1042 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1043 Rule windresRule ( "$(source): ${$(module_name)_precondition}\n"
1044 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).coff: $(source)$(dependencies) $(WRC_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir) $(TEMPORARY)\n"
1045 "\t$(ECHO_WRC)\n"
1046 "\t${gcc} -xc -E -DRC_INVOKED ${$(module_name)_RCFLAGS} $(source) > $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).rci.tmp\n"
1047 "\t$(Q)$(WRC_TARGET) ${$(module_name)_RCFLAGS} $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).rci.tmp $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).res.tmp\n"
1048 "\t-@${rm} $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).rci.tmp 2>$(NUL)\n"
1049 "\t${windres} $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).res.tmp -o $@\n"
1050 "\t-@${rm} $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).res.tmp 2>$(NUL)\n",
1051 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).coff",
1052 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1053 Rule wmcRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).rc $(INTERMEDIATE)$(SEP)include$(SEP)reactos$(SEP)$(source_name_noext).h: $(WMC_TARGET) $(source) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1054 "\t$(ECHO_WMC)\n"
1055 "\t$(Q)$(WMC_TARGET) -i -H $(INTERMEDIATE)$(SEP)include$(SEP)reactos$(SEP)$(source_name_noext).h -o $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).rc $(source)\n",
1056 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).rc",
1057 "$(INTERMEDIATE)$(SEP)include$(SEP)reactos$(SEP)$(source_name_noext).h",
1058 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1059 Rule winebuildPDefRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).spec: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1060 "\t$(ECHO_CPP)\n"
1061 "\t${gcc} -xc -E ${$(module_name)_RCFLAGS} $(source) > $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).spec\n\n"
1062 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).auto.def: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).spec $(WINEBUILD_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1063 "\t$(ECHO_WINEBLD)\n"
1064 "\t$(Q)$(WINEBUILD_TARGET) $(WINEBUILD_FLAGS) -o $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).auto.def --def -E $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).spec --filename $(module_dllname)\n\n",
1065 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).spec",
1066 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).auto.def",
1067 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1068 Rule winebuildPRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.c: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).spec $(WINEBUILD_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1069 "\t$(ECHO_WINEBLD)\n"
1070 "\t$(Q)$(WINEBUILD_TARGET) $(WINEBUILD_FLAGS) -o $@ --pedll $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).spec --filename $(module_dllname)\n\n"
1071 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.c | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1072 "\t$(ECHO_CC)\n"
1073 "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
1074 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).spec",
1075 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.c",
1076 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.o",
1077 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1078 Rule winebuildDefRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).auto.def: $(source)$(dependencies) $(WINEBUILD_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1079 "\t$(ECHO_WINEBLD)\n"
1080 "\t$(Q)$(WINEBUILD_TARGET) $(WINEBUILD_FLAGS) -o $(INTERMEDIATE)$(SEP)$(source_path)$(SEP)$(source_name_noext)_$(module_name).auto.def --def -E $(source) --filename $(module_dllname)\n\n",
1081 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).spec",
1082 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).auto.def",
1083 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1084 Rule winebuildRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.c: $(source_path)$(SEP)$(source_name_noext).spec $(WINEBUILD_TARGET)\n"
1085 "\t$(ECHO_WINEBLD)\n"
1086 "\t$(Q)$(WINEBUILD_TARGET) $(WINEBUILD_FLAGS) -o $@ --pedll $(source_path)$(SEP)$(source_name_noext).spec --filename $(module_dllname)\n"
1087 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.c$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1088 "\t$(ECHO_CC)\n"
1089 "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
1090 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.c",
1091 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).stubs.o",
1092 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1093 Rule widlHeaderRule ( "$(source): ${$(module_name)_precondition}\n"
1094 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).h: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1095 "\t$(ECHO_WIDL)\n"
1096 "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -h -H $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).h $(source)\n",
1097 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).h",
1098 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1099 Rule widlServerRule ( "$(source): ${$(module_name)_precondition}\n"
1100 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.h: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1101 "\t$(ECHO_WIDL)\n"
1102 "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -h -H $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.h -s -S $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.c $(source)\n"
1103 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.h$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1104 "\t$(ECHO_CC)\n"
1105 "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -fno-unit-at-a-time -c $<\n",
1106 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.h",
1107 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.c",
1108 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.o",
1109 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1110 Rule widlClientRule ( "$(source): ${$(module_name)_precondition}\n"
1111 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.h: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1112 "\t$(ECHO_WIDL)\n"
1113 "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -h -H $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.h -c -C $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.c $(source)\n"
1114 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.h$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1115 "\t$(ECHO_CC)\n"
1116 "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -fno-unit-at-a-time -c $<\n",
1117 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.h",
1118 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.c",
1119 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.o",
1120 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1121 Rule widlProxyRule ( "$(source): ${$(module_name)_precondition}\n"
1122 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.h: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1123 "\t$(ECHO_WIDL)\n"
1124 "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -h -H $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.h -p -P $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.c $(source)\n"
1125 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.h$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1126 "\t$(ECHO_CC)\n"
1127 "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -fno-unit-at-a-time -c $<\n",
1128 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.h",
1129 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.c",
1130 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.o",
1131 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1132 Rule widlTlbRule ( "$(source): ${$(module_name)_precondition}\n"
1133 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(module_name).tlb: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1134 "\t$(ECHO_WIDL)\n"
1135 "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -t -T $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).tlb $(source)\n",
1136 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
1137 Rule gccRule ( "$(source): ${$(module_name)_precondition}\n"
1138 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1139 "\t$(ECHO_CC)\n"
1140 "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
1141 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o", NULL );
1142 Rule gccHostRule ( "$(source): ${$(module_name)_precondition}\n"
1143 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1144 "\t$(ECHO_CC)\n"
1145 "\t${host_gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
1146 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o", NULL );
1147 Rule gppRule ( "$(source): ${$(module_name)_precondition}\n"
1148 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1149 "\t$(ECHO_CC)\n"
1150 "\t${gpp} -o $@ $($(module_name)_CXXFLAGS)$(compiler_flags) -c $<\n",
1151 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o", NULL );
1152 Rule gppHostRule ( "$(source): ${$(module_name)_precondition}\n"
1153 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
1154 "\t$(ECHO_CC)\n"
1155 "\t${host_gpp} -o $@ $($(module_name)_CXXFLAGS)$(compiler_flags) -c $<\n",
1156 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o", NULL );
1157 Rule emptyRule ( "", NULL );
1158
1159 void
1160 MingwModuleHandler::GenerateGccCommand (
1161 const FileLocation* sourceFile,
1162 const Rule *rule,
1163 const string& extraDependencies )
1164 {
1165 const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
1166 string dependencies = extraDependencies;
1167
1168 string flags;
1169 string extension = GetExtension ( *sourceFile );
1170 if ( extension == ".cc" || extension == ".cpp" || extension == ".cxx" )
1171 flags = GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags, CompilerTypeCPP );
1172 else
1173 flags = GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags, CompilerTypeCC );
1174
1175 if ( pchFilename )
1176 {
1177 dependencies += " " + backend->GetFullName ( *pchFilename );
1178 delete pchFilename;
1179 }
1180
1181 /* WIDL generated headers may be used */
1182 vector<FileLocation> rpcDependencies;
1183 GetRpcHeaderDependencies ( rpcDependencies );
1184 if ( rpcDependencies.size () > 0 )
1185 dependencies += " " + v2s ( backend, rpcDependencies, 5 );
1186
1187 rule->Execute ( fMakefile, backend, module, sourceFile, clean_files, dependencies, flags );
1188 }
1189
1190 string
1191 MingwModuleHandler::GetPropertyValue ( const Module& module, const std::string& name )
1192 {
1193 const Property* property = module.project.LookupProperty(name);
1194
1195 if (property)
1196 return property->value;
1197 else
1198 return string ( "" );
1199 }
1200
1201 /* caller needs to delete the returned object */
1202 const FileLocation*
1203 MingwModuleHandler::GetRpcServerHeaderFilename ( const FileLocation *base ) const
1204 {
1205 string newname = GetBasename ( base->name ) + "_s.h";
1206 return new FileLocation ( IntermediateDirectory, base->relative_path, newname );
1207 }
1208
1209 /* caller needs to delete the returned object */
1210 const FileLocation*
1211 MingwModuleHandler::GetRpcClientHeaderFilename ( const FileLocation *base ) const
1212 {
1213 string newname = GetBasename ( base->name ) + "_c.h";
1214 return new FileLocation ( IntermediateDirectory, base->relative_path, newname );
1215 }
1216
1217 /* caller needs to delete the returned object */
1218 const FileLocation*
1219 MingwModuleHandler::GetRpcProxyHeaderFilename ( const FileLocation *base ) const
1220 {
1221 string newname = GetBasename ( base->name ) + "_p.h";
1222 return new FileLocation ( IntermediateDirectory, base->relative_path, newname );
1223 }
1224
1225 /* caller needs to delete the returned object */
1226 const FileLocation*
1227 MingwModuleHandler::GetIdlHeaderFilename ( const FileLocation *base ) const
1228 {
1229 string newname = GetBasename ( base->name ) + ".h";
1230 return new FileLocation ( IntermediateDirectory, base->relative_path, newname );
1231 }
1232
1233 /* caller needs to delete the returned object */
1234 const FileLocation*
1235 MingwModuleHandler::GetMcHeaderFilename ( const FileLocation *base ) const
1236 {
1237 string newname = GetBasename ( base->name ) + ".h";
1238 return new FileLocation ( IntermediateDirectory, "include/reactos" , newname );
1239 }
1240
1241 void
1242 MingwModuleHandler::GenerateCommands (
1243 const CompilationUnit& compilationUnit,
1244 const string& extraDependencies )
1245 {
1246 const FileLocation& sourceFile = compilationUnit.GetFilename ();
1247 string extension = GetExtension ( sourceFile );
1248 std::transform ( extension.begin (), extension.end (), extension.begin (), tolower );
1249
1250 struct
1251 {
1252 HostType host;
1253 ModuleType type;
1254 string extension;
1255 Rule* rule;
1256 } rules[] = {
1257 { HostDontCare, TypeDontCare, ".s", &gasRule },
1258 { HostDontCare, BootSector, ".asm", &bootRule },
1259 { HostDontCare, TypeDontCare, ".asm", &nasmRule },
1260 { HostDontCare, TypeDontCare, ".rc", &windresRule },
1261 { HostDontCare, TypeDontCare, ".mc", &wmcRule },
1262 { HostDontCare, RpcServer, ".idl", &widlServerRule },
1263 { HostDontCare, RpcClient, ".idl", &widlClientRule },
1264 { HostDontCare, RpcProxy, ".idl", &widlProxyRule },
1265 { HostDontCare, EmbeddedTypeLib, ".idl", &widlTlbRule },
1266 { HostDontCare, TypeDontCare, ".idl", &widlHeaderRule },
1267 { HostTrue, TypeDontCare, ".c", &gccHostRule },
1268 { HostTrue, TypeDontCare, ".cc", &gppHostRule },
1269 { HostTrue, TypeDontCare, ".cpp", &gppHostRule },
1270 { HostTrue, TypeDontCare, ".cxx", &gppHostRule },
1271 { HostFalse, TypeDontCare, ".c", &gccRule },
1272 { HostFalse, TypeDontCare, ".cc", &gppRule },
1273 { HostFalse, TypeDontCare, ".cpp", &gppRule },
1274 { HostFalse, TypeDontCare, ".cxx", &gppRule },
1275 { HostFalse, Cabinet, ".*", &emptyRule }
1276 };
1277 size_t i;
1278 Rule *customRule = NULL;
1279
1280 fprintf ( fMakefile, "# COMMANDS\n" );
1281
1282 for ( i = 0; i < sizeof ( rules ) / sizeof ( rules[0] ); i++ )
1283 {
1284 if ( rules[i].host != HostDontCare && rules[i].host != ModuleHandlerInformations[module.type].DefaultHost )
1285 continue;
1286 if ( rules[i].type != TypeDontCare && rules[i].type != module.type )
1287 continue;
1288 if ( rules[i].extension != extension && rules[i].extension != ".*")
1289 continue;
1290 customRule = rules[i].rule;
1291 break;
1292 }
1293
1294 if ( extension == ".c" || extension == ".cc" || extension == ".cpp" || extension == ".cxx" )
1295 {
1296 GenerateGccCommand ( &sourceFile,
1297 customRule,
1298 GetCompilationUnitDependencies ( compilationUnit ) + extraDependencies );
1299 }
1300 else if ( customRule )
1301 customRule->Execute ( fMakefile, backend, module, &sourceFile, clean_files );
1302 else
1303 {
1304 throw InvalidOperationException ( __FILE__,
1305 __LINE__,
1306 "Unsupported filename extension '%s' in file '%s'",
1307 extension.c_str (),
1308 backend->GetFullName ( sourceFile ).c_str () );
1309 }
1310 }
1311
1312 void
1313 MingwModuleHandler::GenerateBuildMapCode ( const FileLocation *mapTarget )
1314 {
1315 fprintf ( fMakefile, "# BUILD MAP CODE\n" );
1316
1317 fprintf ( fMakefile,
1318 "ifeq ($(ROS_BUILDMAP),full)\n" );
1319
1320 FileLocation mapFilename ( OutputDirectory,
1321 module.output->relative_path,
1322 GetBasename ( module.output->name ) + ".map" );
1323 CLEAN_FILE ( mapFilename );
1324
1325 fprintf ( fMakefile,
1326 "\t$(ECHO_OBJDUMP)\n" );
1327 fprintf ( fMakefile,
1328 "\t$(Q)${objdump} -d -S %s > %s\n",
1329 mapTarget ? backend->GetFullName ( *mapTarget ).c_str () : "$@",
1330 backend->GetFullName ( mapFilename ).c_str () );
1331
1332 fprintf ( fMakefile,
1333 "else\n" );
1334 fprintf ( fMakefile,
1335 "ifeq ($(ROS_BUILDMAP),yes)\n" );
1336
1337 fprintf ( fMakefile,
1338 "\t$(ECHO_NM)\n" );
1339 fprintf ( fMakefile,
1340 "\t$(Q)${nm} --numeric-sort %s > %s\n",
1341 mapTarget ? backend->GetFullName ( *mapTarget ).c_str () : "$@",
1342 backend->GetFullName ( mapFilename ).c_str () );
1343
1344 fprintf ( fMakefile,
1345 "endif\n" );
1346
1347 fprintf ( fMakefile,
1348 "endif\n" );
1349 }
1350
1351 void
1352 MingwModuleHandler::GenerateBuildNonSymbolStrippedCode ()
1353 {
1354 fprintf ( fMakefile, "# BUILD NO STRIP CODE\n" );
1355
1356 fprintf ( fMakefile,
1357 "ifeq ($(ROS_BUILDNOSTRIP),yes)\n" );
1358
1359 FileLocation nostripFilename ( OutputDirectory,
1360 module.output->relative_path,
1361 GetBasename ( module.output->name ) + ".nostrip" + GetExtension ( *module.output ) );
1362 CLEAN_FILE ( nostripFilename );
1363
1364 OutputCopyCommand ( *module.output, nostripFilename );
1365
1366 fprintf ( fMakefile,
1367 "endif\n" );
1368 }
1369
1370 void
1371 MergeStringVector ( const Backend* backend,
1372 const vector<FileLocation>& input,
1373 vector<string>& output )
1374 {
1375 int wrap_at = 25;
1376 string s;
1377 int wrap_count = -1;
1378 for ( size_t i = 0; i < input.size (); i++ )
1379 {
1380 if ( wrap_count++ == wrap_at )
1381 {
1382 output.push_back ( s );
1383 s = "";
1384 wrap_count = 0;
1385 }
1386 else if ( s.size () > 0)
1387 s += " ";
1388 s += backend->GetFullName ( input[i] );
1389 }
1390 if ( s.length () > 0 )
1391 output.push_back ( s );
1392 }
1393
1394 void
1395 MingwModuleHandler::GetObjectsVector ( const IfableData& data,
1396 vector<FileLocation>& objectFiles ) const
1397 {
1398 for ( size_t i = 0; i < data.compilationUnits.size (); i++ )
1399 {
1400 CompilationUnit& compilationUnit = *data.compilationUnits[i];
1401 const FileLocation& compilationName = compilationUnit.GetFilename ();
1402 const FileLocation *object_file = GetObjectFilename ( &compilationName, module );
1403 objectFiles.push_back ( *object_file );
1404 delete object_file;
1405 }
1406 }
1407
1408 void
1409 MingwModuleHandler::GenerateCleanObjectsAsYouGoCode () const
1410 {
1411 if ( backend->configuration.CleanAsYouGo )
1412 {
1413 vector<FileLocation> objectFiles;
1414 GetObjectsVector ( module.non_if_data,
1415 objectFiles );
1416 vector<string> lines;
1417 MergeStringVector ( backend,
1418 objectFiles,
1419 lines );
1420 for ( size_t i = 0; i < lines.size (); i++ )
1421 {
1422 fprintf ( fMakefile,
1423 "\t-@${rm} %s 2>$(NUL)\n",
1424 lines[i].c_str () );
1425 }
1426 }
1427 }
1428
1429 void
1430 MingwModuleHandler::GenerateRunRsymCode () const
1431 {
1432 fprintf ( fMakefile, "# RUN RSYM CODE\n" );
1433 fprintf ( fMakefile,
1434 "ifneq ($(ROS_GENERATE_RSYM),no)\n" );
1435 fprintf ( fMakefile,
1436 "\t$(ECHO_RSYM)\n" );
1437 fprintf ( fMakefile,
1438 "\t$(Q)$(RSYM_TARGET) $@ $@\n\n" );
1439 fprintf ( fMakefile,
1440 "endif\n" );
1441 }
1442
1443 void
1444 MingwModuleHandler::GenerateRunStripCode () const
1445 {
1446 fprintf ( fMakefile, "# RUN STRIP CODE\n" );
1447 fprintf ( fMakefile,
1448 "ifeq ($(ROS_LEAN_AND_MEAN),yes)\n" );
1449 fprintf ( fMakefile,
1450 "\t$(ECHO_STRIP)\n" );
1451 fprintf ( fMakefile,
1452 "\t${strip} -s -x -X $@\n\n" );
1453 fprintf ( fMakefile,
1454 "endif\n" );
1455 }
1456
1457 void
1458 MingwModuleHandler::GenerateLinkerCommand (
1459 const string& dependencies,
1460 const string& linkerParameters,
1461 const string& pefixupParameters )
1462 {
1463 const FileLocation *target_file = GetTargetFilename ( module, NULL );
1464 const FileLocation *definitionFilename = GetDefinitionFilename ();
1465 string linker = "${ld}";
1466 string objectsMacro = GetObjectsMacro ( module );
1467 string libsMacro = GetLibsMacro ();
1468
1469 fprintf ( fMakefile, "# LINKER COMMAND\n" );
1470
1471 string target_macro ( GetTargetMacro ( module ) );
1472 string target_folder ( backend->GetFullPath ( *target_file ) );
1473
1474 string linkerScriptArgument;
1475 if ( module.linkerScript != NULL )
1476 linkerScriptArgument = ssprintf ( " -T %s", backend->GetFullName ( *module.linkerScript->file ).c_str () );
1477 else
1478 linkerScriptArgument = "";
1479
1480 /* check if we need to add default C++ libraries, ie if we have
1481 * a C++ user-mode module without the -nostdlib linker flag
1482 */
1483 bool link_defaultlibs = module.cplusplus &&
1484 linkerParameters.find ("-nostdlib") == string::npos &&
1485 !(module.type == KernelModeDLL || module.type == KernelModeDriver);
1486
1487 if ( !module.HasImportLibrary() )
1488 {
1489 fprintf ( fMakefile,
1490 "%s: %s %s $(RSYM_TARGET) $(PEFIXUP_TARGET) | %s\n",
1491 target_macro.c_str (),
1492 definitionFilename ? backend->GetFullName ( *definitionFilename ).c_str () : "",
1493 dependencies.c_str (),
1494 target_folder.c_str () );
1495 fprintf ( fMakefile, "\t$(ECHO_LD)\n" );
1496
1497 fprintf ( fMakefile,
1498 "\t%s %s%s %s %s %s %s -o %s\n",
1499 linker.c_str (),
1500 linkerParameters.c_str (),
1501 linkerScriptArgument.c_str (),
1502 objectsMacro.c_str (),
1503 link_defaultlibs ? "$(PROJECT_LPPFLAGS) " : "",
1504 libsMacro.c_str (),
1505 GetLinkerMacro ().c_str (),
1506 target_macro.c_str () );
1507 }
1508 else
1509 {
1510 FileLocation temp_exp ( IntermediateDirectory,
1511 module.output->relative_path,
1512 module.name + ".exp" );
1513 CLEAN_FILE ( temp_exp );
1514
1515 fprintf ( fMakefile,
1516 "%s: %s | %s\n",
1517 backend->GetFullName ( temp_exp ).c_str (),
1518 definitionFilename ? backend->GetFullName ( *definitionFilename ).c_str () : "",
1519 backend->GetFullPath ( temp_exp ).c_str () );
1520 fprintf ( fMakefile, "\t$(ECHO_DLLTOOL)\n" );
1521
1522 fprintf ( fMakefile,
1523 "\t${dlltool} --dllname %s --def %s --output-exp $@%s%s\n",
1524 module.GetDllName ().c_str (),
1525 definitionFilename ? backend->GetFullName ( *definitionFilename ).c_str () : "",
1526 module.mangledSymbols ? "" : " --kill-at",
1527 module.underscoreSymbols ? " --add-underscore" : "" );
1528
1529 fprintf ( fMakefile,
1530 "%s: %s %s $(RSYM_TARGET) $(PEFIXUP_TARGET) | %s\n",
1531 target_macro.c_str (),
1532 backend->GetFullName ( temp_exp ).c_str (),
1533 dependencies.c_str (),
1534 target_folder.c_str () );
1535 fprintf ( fMakefile, "\t$(ECHO_LD)\n" );
1536
1537 fprintf ( fMakefile,
1538 "\t%s %s%s %s %s %s %s %s -o %s\n",
1539
1540 linker.c_str (),
1541 linkerParameters.c_str (),
1542 linkerScriptArgument.c_str (),
1543 backend->GetFullName ( temp_exp ).c_str (),
1544 objectsMacro.c_str (),
1545 link_defaultlibs ? "$(PROJECT_LPPFLAGS) " : "",
1546 libsMacro.c_str (),
1547 GetLinkerMacro ().c_str (),
1548 target_macro.c_str () );
1549
1550 fprintf ( fMakefile,
1551 "\t$(Q)$(PEFIXUP_TARGET) %s -exports%s\n",
1552 target_macro.c_str (),
1553 pefixupParameters.c_str() );
1554 }
1555
1556 GenerateBuildMapCode ();
1557 GenerateBuildNonSymbolStrippedCode ();
1558 GenerateRunRsymCode ();
1559 GenerateRunStripCode ();
1560 GenerateCleanObjectsAsYouGoCode ();
1561
1562 if ( definitionFilename )
1563 delete definitionFilename;
1564 delete target_file;
1565 }
1566
1567 void
1568 MingwModuleHandler::GeneratePhonyTarget() const
1569 {
1570 string targetMacro ( GetTargetMacro ( module ) );
1571 const FileLocation *target_file = GetTargetFilename ( module, NULL );
1572
1573 fprintf ( fMakefile, "# PHONY TARGET\n" );
1574 fprintf ( fMakefile,
1575 ".PHONY: %s\n\n",
1576 targetMacro.c_str ());
1577 fprintf ( fMakefile, "%s: | %s\n",
1578 targetMacro.c_str (),
1579 backend->GetFullPath ( *target_file ).c_str () );
1580
1581 delete target_file;
1582 }
1583
1584 void
1585 MingwModuleHandler::GenerateObjectFileTargets ( const IfableData& data )
1586 {
1587 size_t i;
1588 string moduleDependencies;
1589
1590 fprintf ( fMakefile, "# OBJECT FILE TARGETS\n" );
1591
1592 const vector<CompilationUnit*>& compilationUnits = data.compilationUnits;
1593 for ( i = 0; i < compilationUnits.size (); i++ )
1594 {
1595 CompilationUnit& compilationUnit = *compilationUnits[i];
1596 const FileLocation& compilationName = compilationUnit.GetFilename ();
1597 const FileLocation *objectFilename = GetObjectFilename ( &compilationName, module );
1598 if ( GetExtension ( *objectFilename ) == ".h" )
1599 moduleDependencies += ssprintf ( " $(%s_HEADERS)", module.name.c_str () );
1600 else if ( GetExtension ( *objectFilename ) == ".rc" )
1601 moduleDependencies += ssprintf ( " $(%s_RESOURCES)", module.name.c_str () );
1602 delete objectFilename;
1603 }
1604
1605 for ( i = 0; i < compilationUnits.size (); i++ )
1606 {
1607 GenerateCommands ( *compilationUnits[i],
1608 moduleDependencies );
1609 fprintf ( fMakefile,
1610 "\n" );
1611 }
1612
1613 vector<CompilationUnit*> sourceCompilationUnits;
1614 GetModuleSpecificCompilationUnits ( sourceCompilationUnits );
1615 for ( i = 0; i < sourceCompilationUnits.size (); i++ )
1616 {
1617 GenerateCommands ( *sourceCompilationUnits[i],
1618 moduleDependencies );
1619 }
1620 CleanupCompilationUnitVector ( sourceCompilationUnits );
1621
1622 SpecFileType spec = IsSpecDefinitionFile ();
1623
1624 if ( spec )
1625 {
1626 Rule * defRule;
1627
1628 if (spec == PSpec)
1629 defRule = &winebuildPRule;
1630 else
1631 defRule = &winebuildRule;
1632
1633 defRule->Execute ( fMakefile, backend, module, module.importLibrary->source, clean_files );
1634 }
1635 }
1636
1637 void
1638 MingwModuleHandler::GenerateObjectFileTargets ()
1639 {
1640 const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
1641
1642 fprintf ( fMakefile, "# OBJECT FILE TARGETS\n" );
1643
1644 if ( pchFilename )
1645 {
1646 string cc = ( ModuleHandlerInformations[module.type].DefaultHost == HostTrue ? "${host_gcc}" : "${gcc}" );
1647 string cppc = ( ModuleHandlerInformations[module.type].DefaultHost == HostTrue ? "${host_gpp}" : "${gpp}" );
1648
1649 const FileLocation& baseHeaderFile = *module.pch->file;
1650 CLEAN_FILE ( *pchFilename );
1651 string dependencies = backend->GetFullName ( baseHeaderFile );
1652 /* WIDL generated headers may be used */
1653 vector<FileLocation> rpcDependencies;
1654 GetRpcHeaderDependencies ( rpcDependencies );
1655 if ( rpcDependencies.size () > 0 )
1656 dependencies += " " + v2s ( backend, rpcDependencies, 5 );
1657 fprintf ( fMakefile,
1658 "%s: %s | %s\n",
1659 backend->GetFullName ( *pchFilename ).c_str(),
1660 dependencies.c_str(),
1661 backend->GetFullPath ( *pchFilename ).c_str() );
1662 fprintf ( fMakefile, "\t$(ECHO_PCH)\n" );
1663 fprintf ( fMakefile,
1664 "\t%s -o %s %s %s %s %s\n\n",
1665 module.cplusplus ? cppc.c_str() : cc.c_str(),
1666 backend->GetFullName ( *pchFilename ).c_str(),
1667 module.cplusplus ? cxxflagsMacro.c_str() : cflagsMacro.c_str(),
1668 GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags, module.cplusplus ? CompilerTypeCPP : CompilerTypeCC ).c_str(),
1669 DEBUG_FORMAT,
1670 backend->GetFullName ( baseHeaderFile ).c_str() );
1671 delete pchFilename;
1672 }
1673
1674 GenerateObjectFileTargets ( module.non_if_data );
1675 fprintf ( fMakefile, "\n" );
1676 }
1677
1678 /* caller needs to delete the returned object */
1679 const FileLocation*
1680 MingwModuleHandler::GenerateArchiveTarget ()
1681 {
1682 const FileLocation *archiveFilename = GetModuleArchiveFilename ();
1683 const FileLocation *definitionFilename = GetDefinitionFilename ();
1684
1685 fprintf ( fMakefile, "# ARCHIVE TARGET\n" );
1686
1687 if ( IsStaticLibrary ( module ) && definitionFilename )
1688 {
1689 arRule1.Execute ( fMakefile,
1690 backend,
1691 module,
1692 archiveFilename,
1693 clean_files,
1694 backend->GetFullName ( *definitionFilename ).c_str () );
1695
1696 fprintf ( fMakefile,
1697 "\t${dlltool} --dllname %s --def %s --output-lib $@%s%s\n",
1698 module.GetDllName ().c_str (),
1699 backend->GetFullName ( *definitionFilename ).c_str (),
1700 module.mangledSymbols ? "" : " --kill-at",
1701 module.underscoreSymbols ? " --add-underscore" : "" );
1702 }
1703 else
1704 arRule1.Execute ( fMakefile, backend, module, archiveFilename, clean_files );
1705
1706 if ( definitionFilename )
1707 delete definitionFilename;
1708
1709 if(module.type == HostStaticLibrary)
1710 arHostRule2.Execute ( fMakefile, backend, module, archiveFilename, clean_files );
1711 else
1712 arRule2.Execute ( fMakefile, backend, module, archiveFilename, clean_files );
1713
1714 GenerateCleanObjectsAsYouGoCode ();
1715
1716 fprintf ( fMakefile, "\n" );
1717
1718 return archiveFilename;
1719 }
1720
1721 /*static*/ string
1722 MingwModuleHandler::GetObjectsMacro ( const Module& module )
1723 {
1724 return ssprintf ( "$(%s_OBJS)",
1725 module.name.c_str () );
1726 }
1727
1728 string
1729 MingwModuleHandler::GetLinkingDependenciesMacro () const
1730 {
1731 return ssprintf ( "$(%s_LINKDEPS)", module.name.c_str () );
1732 }
1733
1734 string
1735 MingwModuleHandler::GetLibsMacro () const
1736 {
1737 return ssprintf ( "$(%s_LIBS)", module.name.c_str () );
1738 }
1739
1740 string
1741 MingwModuleHandler::GetLinkerMacro () const
1742 {
1743 return ssprintf ( "$(%s_LFLAGS)",
1744 module.name.c_str () );
1745 }
1746
1747 string
1748 MingwModuleHandler::GetModuleTargets ( const Module& module )
1749 {
1750 if ( ReferenceObjects ( module ) )
1751 return GetObjectsMacro ( module );
1752 else
1753 {
1754 const FileLocation *target_file = GetTargetFilename ( module, NULL );
1755 string target = backend->GetFullName ( *target_file ).c_str ();
1756 delete target_file;
1757 return target;
1758 }
1759 }
1760
1761 void
1762 MingwModuleHandler::GenerateSourceMacro ()
1763 {
1764 sourcesMacro = ssprintf ( "%s_SOURCES", module.name.c_str ());
1765
1766 GenerateSourceMacros ( module.non_if_data );
1767
1768 // future references to the macro will be to get its values
1769 sourcesMacro = ssprintf ("$(%s)", sourcesMacro.c_str ());
1770 }
1771
1772 void
1773 MingwModuleHandler::GenerateObjectMacro ()
1774 {
1775 objectsMacro = ssprintf ("%s_OBJS", module.name.c_str ());
1776
1777 GenerateObjectMacros ( module.non_if_data );
1778
1779 // future references to the macro will be to get its values
1780 objectsMacro = ssprintf ("$(%s)", objectsMacro.c_str ());
1781 }
1782
1783 void
1784 MingwModuleHandler::GenerateTargetMacro ()
1785 {
1786 fprintf ( fMakefile, "# TARGET MACRO\n" );
1787 fprintf ( fMakefile,
1788 "%s := %s\n",
1789 GetTargetMacro ( module, false ).c_str (),
1790 GetModuleTargets ( module ).c_str () );
1791 }
1792
1793 void
1794 MingwModuleHandler::GetRpcHeaderDependencies (
1795 vector<FileLocation>& dependencies ) const
1796 {
1797 for ( size_t i = 0; i < module.non_if_data.libraries.size (); i++ )
1798 {
1799 Library& library = *module.non_if_data.libraries[i];
1800 if ( library.importedModule->type == RpcServer ||
1801 library.importedModule->type == RpcClient ||
1802 library.importedModule->type == RpcProxy ||
1803 library.importedModule->type == IdlHeader )
1804 {
1805 for ( size_t j = 0; j < library.importedModule->non_if_data.compilationUnits.size (); j++ )
1806 {
1807 CompilationUnit& compilationUnit = *library.importedModule->non_if_data.compilationUnits[j];
1808 const FileLocation& sourceFile = compilationUnit.GetFilename ();
1809 string extension = GetExtension ( sourceFile );
1810 if ( extension == ".idl" || extension == ".IDL" )
1811 {
1812 string basename = GetBasename ( sourceFile.name );
1813 if ( library.importedModule->type == RpcServer )
1814 {
1815 const FileLocation *header = GetRpcServerHeaderFilename ( &sourceFile );
1816 dependencies.push_back ( *header );
1817 delete header;
1818 }
1819 if ( library.importedModule->type == RpcClient )
1820 {
1821 const FileLocation *header = GetRpcClientHeaderFilename ( &sourceFile );
1822 dependencies.push_back ( *header );
1823 delete header;
1824 }
1825 if ( library.importedModule->type == RpcProxy )
1826 {
1827 const FileLocation *header = GetRpcProxyHeaderFilename ( &sourceFile );
1828 dependencies.push_back ( *header );
1829 delete header;
1830 }
1831 if ( library.importedModule->type == IdlHeader )
1832 {
1833 const FileLocation *header = GetIdlHeaderFilename ( &sourceFile );
1834 dependencies.push_back ( *header );
1835 delete header;
1836 }
1837 }
1838 }
1839 }
1840 }
1841 }
1842
1843 void
1844 MingwModuleHandler::GenerateOtherMacros ()
1845 {
1846 set<const Define *> used_defs;
1847
1848 fprintf ( fMakefile, "# OTHER MACROS\n" );
1849
1850 commonflagsMacro = ssprintf ("%s_COMMONFLAGS", module.name.c_str ());
1851 cflagsMacro = ssprintf ("%s_CFLAGS", module.name.c_str ());
1852 cxxflagsMacro = ssprintf ("%s_CXXFLAGS", module.name.c_str ());
1853 nasmflagsMacro = ssprintf ("%s_NASMFLAGS", module.name.c_str ());
1854 windresflagsMacro = ssprintf ("%s_RCFLAGS", module.name.c_str ());
1855 widlflagsMacro = ssprintf ("%s_WIDLFLAGS", module.name.c_str ());
1856 linkerflagsMacro = ssprintf ("%s_LFLAGS", module.name.c_str ());
1857 libsMacro = ssprintf("%s_LIBS", module.name.c_str ());
1858 linkDepsMacro = ssprintf ("%s_LINKDEPS", module.name.c_str ());
1859
1860 GenerateMacros (
1861 "=",
1862 module.non_if_data,
1863 &module.linkerFlags,
1864 used_defs );
1865
1866 if ( ModuleHandlerInformations[module.type].DefaultHost == HostTrue )
1867 {
1868 GenerateMacros("+=", module.project.host_non_if_data, NULL, used_defs);
1869 }
1870 else
1871 {
1872 GenerateMacros (
1873 "+=",
1874 module.project.non_if_data,
1875 NULL,
1876 used_defs );
1877 }
1878
1879 if ( IsSpecDefinitionFile() )
1880 {
1881 vector<FileLocation> s;
1882 GetSpecImplibDependencies ( s, module.importLibrary->source );
1883
1884 fprintf (
1885 fMakefile,
1886 "%s +=",
1887 linkDepsMacro.c_str() );
1888 for ( size_t i = 0; i < s.size(); i++ )
1889 fprintf ( fMakefile,
1890 " %s",
1891 backend->GetFullName ( s[i] ).c_str () );
1892 fprintf ( fMakefile, "\n" );
1893 }
1894
1895 string globalCflags = " ";
1896 globalCflags += ssprintf ("$(%s)", commonflagsMacro.c_str ());
1897 if ( ModuleHandlerInformations[module.type].DefaultHost == HostFalse )
1898 {
1899 if ( module.dynamicCRT )
1900 globalCflags += " -D_DLL -D__USE_CRTIMP";
1901 }
1902 else
1903 globalCflags += " -Wall -Wpointer-arith";
1904 globalCflags += DEBUG_FORMAT;
1905 if ( backend->usePipe )
1906 globalCflags += " -pipe";
1907 if ( !module.allowWarnings )
1908 globalCflags += " -Werror";
1909 if ( ModuleHandlerInformations[module.type].DefaultHost == HostTrue )
1910 {
1911 if ( module.cplusplus )
1912 globalCflags += " $(HOST_CPPFLAGS)";
1913 else
1914 globalCflags += " -Wno-strict-aliasing $(HOST_CFLAGS)";
1915 }
1916 else
1917 {
1918 if ( module.cplusplus )
1919 {
1920 globalCflags += " $(TARGET_CPPFLAGS)";
1921 }
1922 else
1923 globalCflags += " -nostdinc";
1924 }
1925
1926 // Always force disabling of sibling calls optimisation for GCC
1927 // (TODO: Move to version-specific once this bug is fixed in GCC)
1928 globalCflags += " -fno-optimize-sibling-calls";
1929
1930 if ( ModuleHandlerInformations[module.type].DefaultHost == HostFalse )
1931 {
1932 fprintf (
1933 fMakefile,
1934 "%s +=%s\n",
1935 cflagsMacro.c_str (),
1936 (" $(PROJECT_CFLAGS)" + globalCflags).c_str () );
1937
1938 fprintf (
1939 fMakefile,
1940 "%s +=%s\n",
1941 cxxflagsMacro.c_str (),
1942 (" $(PROJECT_CXXFLAGS)" + globalCflags).c_str () );
1943
1944 fprintf (
1945 fMakefile,
1946 "%s += $(PROJECT_RCFLAGS)\n",
1947 windresflagsMacro.c_str () );
1948
1949 fprintf (
1950 fMakefile,
1951 "%s += $(PROJECT_WIDLFLAGS) -I%s\n",
1952 widlflagsMacro.c_str (),
1953 module.output->relative_path.c_str () );
1954
1955 fprintf (
1956 fMakefile,
1957 "%s_LFLAGS := $(PROJECT_LFLAGS) $(%s_LFLAGS)\n",
1958 module.name.c_str (),
1959 module.name.c_str () );
1960 }
1961 else
1962 {
1963 fprintf (
1964 fMakefile,
1965 "%s +=%s\n",
1966 cflagsMacro.c_str (),
1967 globalCflags.c_str () );
1968
1969 fprintf (
1970 fMakefile,
1971 "%s +=%s\n",
1972 cxxflagsMacro.c_str (),
1973 globalCflags.c_str () );
1974
1975 fprintf (
1976 fMakefile,
1977 "%s_LFLAGS += $(HOST_LFLAGS)\n",
1978 module.name.c_str () );
1979 }
1980
1981 fprintf (
1982 fMakefile,
1983 "%s += $(%s)\n",
1984 linkDepsMacro.c_str (),
1985 libsMacro.c_str () );
1986
1987 const char *cflags = ModuleHandlerInformations[module.type].cflags;
1988 if ( strlen( cflags ) > 0 )
1989 {
1990 fprintf ( fMakefile,
1991 "%s += %s\n\n",
1992 cflagsMacro.c_str (),
1993 cflags );
1994 fprintf ( fMakefile,
1995 "%s += %s\n\n",
1996 cxxflagsMacro.c_str (),
1997 cflags );
1998 }
1999
2000 const char* nasmflags = ModuleHandlerInformations[module.type].nasmflags;
2001 if ( strlen( nasmflags ) > 0 )
2002 {
2003 fprintf ( fMakefile,
2004 "%s += %s\n\n",
2005 nasmflagsMacro.c_str (),
2006 nasmflags );
2007 }
2008
2009 const char *linkerflags = ModuleHandlerInformations[module.type].linkerflags;
2010 if ( strlen( linkerflags ) > 0 )
2011 {
2012 fprintf ( fMakefile,
2013 "%s += %s\n\n",
2014 linkerflagsMacro.c_str (),
2015 linkerflags );
2016 }
2017
2018 fprintf ( fMakefile, "\n\n" );
2019
2020 // future references to the macros will be to get their values
2021 commonflagsMacro = ssprintf ("$(%s)", commonflagsMacro.c_str ());
2022 cflagsMacro = ssprintf ("$(%s)", cflagsMacro.c_str ());
2023 cxxflagsMacro = ssprintf ("$(%s)", cxxflagsMacro.c_str ());
2024 nasmflagsMacro = ssprintf ("$(%s)", nasmflagsMacro.c_str ());
2025 widlflagsMacro = ssprintf ("$(%s)", widlflagsMacro.c_str ());
2026 }
2027
2028 void
2029 MingwModuleHandler::GenerateRules ()
2030 {
2031 SpecFileType spec;
2032
2033 fprintf ( fMakefile, "# RULES\n" );
2034 string targetMacro = GetTargetMacro ( module );
2035 //CLEAN_FILE ( targetMacro );
2036 CLEAN_FILE ( FileLocation ( SourceDirectory, "", targetMacro ) );
2037
2038 // generate phony target for module name
2039 fprintf ( fMakefile, ".PHONY: %s\n",
2040 module.name.c_str () );
2041 string dependencies = GetTargetMacro ( module );
2042 if ( module.type == Test )
2043 dependencies += " $(REGTESTS_RUN_TARGET)";
2044 fprintf ( fMakefile, "%s: %s\n\n",
2045 module.name.c_str (),
2046 dependencies.c_str () );
2047 if ( module.type == Test )
2048 {
2049 fprintf ( fMakefile,
2050 "\t@%s\n",
2051 targetMacro.c_str ());
2052 }
2053
2054 if ( !ReferenceObjects ( module ) )
2055 {
2056 const FileLocation* ar_target = GenerateArchiveTarget ();
2057 delete ar_target;
2058 }
2059
2060
2061 spec = IsSpecDefinitionFile();
2062
2063 if(spec)
2064 {
2065 Rule * defRule;
2066
2067 if (spec == PSpec)
2068 defRule = &winebuildPDefRule;
2069 else
2070 defRule = &winebuildDefRule;
2071
2072 defRule->Execute ( fMakefile, backend, module, module.importLibrary->source, clean_files );
2073 }
2074
2075 GenerateObjectFileTargets ();
2076 }
2077
2078 void
2079 MingwModuleHandler::GetInvocationDependencies (
2080 const Module& module,
2081 string_list& dependencies )
2082 {
2083 for ( size_t i = 0; i < module.invocations.size (); i++ )
2084 {
2085 Invoke& invoke = *module.invocations[i];
2086 if ( invoke.invokeModule == &module )
2087 /* Protect against circular dependencies */
2088 continue;
2089 invoke.GetTargets ( dependencies );
2090 }
2091 }
2092
2093 void
2094 MingwModuleHandler::GenerateInvocations () const
2095 {
2096 if ( module.invocations.size () == 0 )
2097 return;
2098
2099 fprintf ( fMakefile, "# INVOCATIONS\n" );
2100
2101 size_t iend = module.invocations.size ();
2102 for ( size_t i = 0; i < iend; i++ )
2103 {
2104 const Invoke& invoke = *module.invocations[i];
2105
2106 if ( invoke.invokeModule->type != BuildTool )
2107 {
2108 throw XMLInvalidBuildFileException (
2109 module.node.location,
2110 "Only modules of type buildtool can be invoked." );
2111 }
2112
2113 string invokeTarget = module.GetInvocationTarget ( i );
2114 string_list invoke_targets;
2115 assert ( invoke_targets.size() );
2116 invoke.GetTargets ( invoke_targets );
2117 fprintf ( fMakefile,
2118 ".PHONY: %s\n\n",
2119 invokeTarget.c_str () );
2120 fprintf ( fMakefile,
2121 "%s:",
2122 invokeTarget.c_str () );
2123 size_t j, jend = invoke_targets.size();
2124 for ( j = 0; j < jend; j++ )
2125 {
2126 fprintf ( fMakefile,
2127 " %s",
2128 invoke_targets[i].c_str () );
2129 }
2130 fprintf ( fMakefile, "\n\n%s", invoke_targets[0].c_str () );
2131 for ( j = 1; j < jend; j++ )
2132 fprintf ( fMakefile,
2133 " %s",
2134 invoke_targets[i].c_str () );
2135 fprintf ( fMakefile,
2136 ": %s\n",
2137 NormalizeFilename ( backend->GetFullName ( *invoke.invokeModule->output ) ).c_str () );
2138 fprintf ( fMakefile, "\t$(ECHO_INVOKE)\n" );
2139 fprintf ( fMakefile,
2140 "\t%s %s\n\n",
2141 NormalizeFilename ( backend->GetFullName ( *invoke.invokeModule->output ) ).c_str (),
2142 invoke.GetParameters ().c_str () );
2143 }
2144 }
2145
2146 string
2147 MingwModuleHandler::GetPreconditionDependenciesName () const
2148 {
2149 return module.name + "_precondition";
2150 }
2151
2152 void
2153 MingwModuleHandler::GetDefaultDependencies (
2154 string_list& dependencies ) const
2155 {
2156 /* Avoid circular dependency */
2157 if ( ModuleHandlerInformations[module.type].DefaultHost == HostTrue )
2158 return;
2159
2160 if (module.name != "psdk" &&
2161 module.name != "dxsdk")
2162 {
2163 dependencies.push_back ( "$(PSDK_TARGET) $(psdk_HEADERS)" );
2164 dependencies.push_back ( "$(DXSDK_TARGET) $(dxsdk_HEADERS)" );
2165 }
2166
2167 if (module.name != "errcodes" &&
2168 module.name != "bugcodes" &&
2169 module.name != "ntstatus")
2170 {
2171 dependencies.push_back ( "$(ERRCODES_TARGET) $(ERRCODES_MCHEADERS)" );
2172 dependencies.push_back ( "$(BUGCODES_TARGET) $(BUGCODES_MCHEADERS)" );
2173 dependencies.push_back ( "$(NTSTATUS_TARGET) $(NTSTATUS_MCHEADERS)" );
2174 }
2175
2176 ///* Check if any dependent library relies on the generated headers */
2177 //for ( size_t i = 0; i < module.project.modules.size (); i++ )
2178 //{
2179 // const Module& m = *module.project.modules[i];
2180 // for ( size_t j = 0; j < m.non_if_data.compilationUnits.size (); j++ )
2181 // {
2182 // CompilationUnit& compilationUnit = *m.non_if_data.compilationUnits[j];
2183 // const FileLocation& sourceFile = compilationUnit.GetFilename ();
2184 // string extension = GetExtension ( sourceFile );
2185 // if (extension == ".mc" || extension == ".MC" )
2186 // {
2187 // string dependency = ssprintf ( "$(%s_MCHEADERS)", m.name.c_str () );
2188 // dependencies.push_back ( dependency );
2189 // }
2190 // }
2191 //}
2192 }
2193
2194 void
2195 MingwModuleHandler::GeneratePreconditionDependencies ()
2196 {
2197 fprintf ( fMakefile, "# PRECONDITION DEPENDENCIES\n" );
2198 string preconditionDependenciesName = GetPreconditionDependenciesName ();
2199 string_list dependencies;
2200 GetDefaultDependencies ( dependencies );
2201 GetModuleDependencies ( dependencies );
2202
2203 GetInvocationDependencies ( module, dependencies );
2204
2205 if ( dependencies.size() )
2206 {
2207 fprintf ( fMakefile,
2208 "%s =",
2209 preconditionDependenciesName.c_str () );
2210 for ( size_t i = 0; i < dependencies.size(); i++ )
2211 fprintf ( fMakefile,
2212 " %s",
2213 dependencies[i].c_str () );
2214 fprintf ( fMakefile, "\n\n" );
2215 }
2216
2217 fprintf ( fMakefile, "\n" );
2218 }
2219
2220 SpecFileType
2221 MingwModuleHandler::IsSpecDefinitionFile () const
2222 {
2223 if(!module.importLibrary)
2224 return None;
2225
2226 std::string ext = GetExtension ( *module.importLibrary->source );
2227
2228 if ( ext == ".spec" )
2229 return Spec;
2230
2231 if ( ext == ".pspec" )
2232 return PSpec;
2233
2234 return None;
2235 }
2236
2237 /* caller needs to delete the returned object */
2238 const FileLocation*
2239 MingwModuleHandler::GetDefinitionFilename () const
2240 {
2241 if ( module.importLibrary == NULL )
2242 return NULL;
2243
2244 if ( IsSpecDefinitionFile () )
2245 {
2246 return new FileLocation ( IntermediateDirectory,
2247 module.importLibrary->source->relative_path,
2248 GetBasename ( module.importLibrary->source->name ) + "_" + module.name + ".auto.def" );
2249 }
2250 else
2251 {
2252 return new FileLocation ( SourceDirectory,
2253 module.importLibrary->source->relative_path,
2254 module.importLibrary->source->name );
2255 }
2256 }
2257
2258 void
2259 MingwModuleHandler::GenerateImportLibraryTargetIfNeeded ()
2260 {
2261 if ( module.importLibrary != NULL )
2262 {
2263 const FileLocation *library_target = GetImportLibraryFilename ( module, &clean_files );
2264 const FileLocation *defFilename = GetDefinitionFilename ();
2265 string empty = "tools" + sSep + "rbuild" + sSep + "empty.def";
2266
2267 fprintf ( fMakefile, "# IMPORT LIBRARY RULE\n" );
2268
2269 fprintf ( fMakefile, "%s:",
2270 backend->GetFullName ( *library_target ).c_str () );
2271
2272 if ( defFilename )
2273 {
2274 fprintf ( fMakefile, " %s",
2275 backend->GetFullName ( *defFilename ).c_str () );
2276 }
2277
2278 fprintf ( fMakefile, " | %s\n",
2279 backend->GetFullPath ( *library_target ).c_str () );
2280
2281 fprintf ( fMakefile, "\t$(ECHO_DLLTOOL)\n" );
2282
2283 fprintf ( fMakefile,
2284 "\t${dlltool} --dllname %s --def %s --output-lib %s%s%s\n\n",
2285 module.GetDllName ().c_str (),
2286 defFilename ? backend->GetFullName ( *defFilename ).c_str ()
2287 : empty.c_str (),
2288 backend->GetFullName ( *library_target ).c_str (),
2289 module.mangledSymbols ? "" : " --kill-at",
2290 module.underscoreSymbols ? " --add-underscore" : "" );
2291
2292 if ( defFilename )
2293 delete defFilename;
2294 delete library_target;
2295 }
2296 }
2297
2298 void
2299 MingwModuleHandler::GetSpecObjectDependencies (
2300 vector<FileLocation>& dependencies,
2301 const FileLocation *file ) const
2302 {
2303 dependencies.push_back ( FileLocation ( IntermediateDirectory,
2304 file->relative_path,
2305 GetBasename ( file->name ) + "_" + module.name + ".stubs.c" ) );
2306 }
2307
2308 void
2309 MingwModuleHandler::GetSpecImplibDependencies (
2310 vector<FileLocation>& dependencies,
2311 const FileLocation *file ) const
2312 {
2313 dependencies.push_back ( FileLocation ( IntermediateDirectory,
2314 file->relative_path,
2315 GetBasename ( file->name ) + "_" + module.name + ".auto.def" ) );
2316 }
2317
2318 void
2319 MingwModuleHandler::GetMcObjectDependencies (
2320 vector<FileLocation>& dependencies,
2321 const FileLocation *file ) const
2322 {
2323 string basename = GetBasename ( file->name );
2324
2325 FileLocation defDependency ( IntermediateDirectory,
2326 "include/reactos",
2327 basename + ".h" );
2328 dependencies.push_back ( defDependency );
2329
2330 FileLocation stubsDependency ( IntermediateDirectory,
2331 file->relative_path,
2332 basename + ".rc" );
2333 dependencies.push_back ( stubsDependency );
2334 }
2335
2336 void
2337 MingwModuleHandler::GetWidlObjectDependencies (
2338 vector<FileLocation>& dependencies,
2339 const FileLocation *file ) const
2340 {
2341 string basename = GetBasename ( file->name );
2342 const FileLocation *generatedHeaderFilename = GetRpcServerHeaderFilename ( file );
2343
2344 FileLocation serverSourceDependency ( IntermediateDirectory,
2345 file->relative_path,
2346 basename + "_s.c" );
2347 dependencies.push_back ( serverSourceDependency );
2348 dependencies.push_back ( *generatedHeaderFilename );
2349
2350 delete generatedHeaderFilename;
2351 }
2352
2353 void
2354 MingwModuleHandler::GetDefinitionDependencies (
2355 vector<FileLocation>& dependencies ) const
2356 {
2357 const vector<CompilationUnit*>& compilationUnits = module.non_if_data.compilationUnits;
2358 for ( size_t i = 0; i < compilationUnits.size (); i++ )
2359 {
2360 const CompilationUnit& compilationUnit = *compilationUnits[i];
2361 const FileLocation& sourceFile = compilationUnit.GetFilename ();
2362 string extension = GetExtension ( sourceFile );
2363
2364 if (extension == ".spec" || extension == ".pspec")
2365 GetSpecObjectDependencies ( dependencies, &sourceFile );
2366
2367 if (extension == ".idl")
2368 {
2369 if ( ( module.type == RpcServer ) || ( module.type == RpcClient ) || ( module.type == RpcProxy ) )
2370 GetWidlObjectDependencies ( dependencies, &sourceFile );
2371 }
2372 }
2373 }
2374
2375 enum DebugSupportType
2376 {
2377 DebugKernelMode,
2378 DebugUserMode
2379 };
2380
2381 static void
2382 MingwAddDebugSupportLibraries ( Module& module, DebugSupportType type )
2383 {
2384 Library* pLibrary;
2385
2386 switch(type)
2387 {
2388 case DebugKernelMode:
2389 pLibrary = new Library ( module, "debugsup_ntoskrnl" );
2390 break;
2391
2392 case DebugUserMode:
2393 pLibrary = new Library ( module, "debugsup_ntdll" );
2394 break;
2395
2396 default:
2397 assert(0);
2398 }
2399
2400 module.non_if_data.libraries.push_back(pLibrary);
2401 }
2402
2403 static void
2404 MingwAddCRTLibrary( Module &module )
2405 {
2406 const char * crtAttr = module.CRT.c_str ();
2407 const char * crtLib = NULL;
2408
2409 if ( stricmp ( crtAttr, "libc" ) == 0 )
2410 crtLib = "crt";
2411 else if ( stricmp ( crtAttr, "msvcrt" ) == 0 )
2412 crtLib = "msvcrt";
2413 else if ( stricmp ( crtAttr, "libcntpr" ) == 0 )
2414 crtLib = "libcntpr";
2415 else if ( stricmp ( crtAttr, "ntdll" ) == 0 )
2416 crtLib = "ntdll";
2417
2418 if ( crtLib )
2419 {
2420 Library* pLibrary = new Library ( module, std::string ( crtLib ) );
2421
2422 if ( pLibrary->importedModule == NULL)
2423 {
2424 throw XMLInvalidBuildFileException (
2425 module.node.location,
2426 "module '%s' trying to import non-existant C runtime module '%s'",
2427 module.name.c_str(),
2428 crtLib );
2429 }
2430
2431 module.non_if_data.libraries.push_back ( pLibrary );
2432 }
2433 }
2434
2435 MingwBuildToolModuleHandler::MingwBuildToolModuleHandler ( const Module& module_ )
2436 : MingwModuleHandler ( module_ )
2437 {
2438 }
2439
2440 void
2441 MingwBuildToolModuleHandler::Process ()
2442 {
2443 GenerateBuildToolModuleTarget ();
2444 }
2445
2446 void
2447 MingwBuildToolModuleHandler::GenerateBuildToolModuleTarget ()
2448 {
2449 string targetMacro ( GetTargetMacro (module) );
2450 string objectsMacro = GetObjectsMacro ( module );
2451 string linkDepsMacro = GetLinkingDependenciesMacro ();
2452 string libsMacro = GetLibsMacro ();
2453
2454 GenerateRules ();
2455
2456 fprintf ( fMakefile, "# BUILD TOOL MODULE TARGET\n" );
2457
2458 string linker;
2459 if ( module.cplusplus )
2460 linker = "${host_gpp}";
2461 else
2462 linker = "${host_gcc}";
2463
2464 const FileLocation *target_file = GetTargetFilename ( module, NULL );
2465 fprintf ( fMakefile, "%s: %s %s | %s\n",
2466 targetMacro.c_str (),
2467 objectsMacro.c_str (),
2468 linkDepsMacro.c_str (),
2469 backend->GetFullPath ( *target_file ).c_str () );
2470 fprintf ( fMakefile, "\t$(ECHO_LD)\n" );
2471 fprintf ( fMakefile,
2472 "\t%s %s -o $@ %s %s\n\n",
2473 linker.c_str (),
2474 GetLinkerMacro ().c_str (),
2475 objectsMacro.c_str (),
2476 libsMacro.c_str () );
2477
2478 delete target_file;
2479 }
2480
2481
2482 MingwKernelModuleHandler::MingwKernelModuleHandler (
2483 const Module& module_ )
2484
2485 : MingwModuleHandler ( module_ )
2486 {
2487 }
2488
2489 void
2490 MingwKernelModuleHandler::Process ()
2491 {
2492 GenerateKernelModuleTarget ();
2493 }
2494
2495 void
2496 MingwKernelModuleHandler::GenerateKernelModuleTarget ()
2497 {
2498 string targetMacro ( GetTargetMacro ( module ) );
2499 string workingDirectory = GetWorkingDirectory ( );
2500 string linkDepsMacro = GetLinkingDependenciesMacro ();
2501
2502 GenerateImportLibraryTargetIfNeeded ();
2503
2504 if ( module.non_if_data.compilationUnits.size () > 0 )
2505 {
2506 GenerateRules ();
2507
2508 string dependencies = linkDepsMacro + " " + objectsMacro;
2509
2510 string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s",
2511 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
2512 module.baseaddress.c_str () );
2513
2514 GenerateLinkerCommand ( dependencies,
2515 linkerParameters + " $(NTOSKRNL_SHARED)",
2516 " -sections" );
2517 }
2518 else
2519 {
2520 GeneratePhonyTarget();
2521 }
2522 }
2523
2524
2525 MingwKernelModeDLLModuleHandler::MingwKernelModeDLLModuleHandler (
2526 const Module& module_ )
2527
2528 : MingwModuleHandler ( module_ )
2529 {
2530 }
2531
2532
2533 void
2534 MingwKernelModeDLLModuleHandler::AddImplicitLibraries ( Module& module )
2535 {
2536 MingwAddCRTLibrary ( module );
2537 MingwAddDebugSupportLibraries ( module, DebugKernelMode );
2538 }
2539
2540 void
2541 MingwKernelModeDLLModuleHandler::Process ()
2542 {
2543 GenerateKernelModeDLLModuleTarget ();
2544 }
2545
2546 void
2547 MingwKernelModeDLLModuleHandler::GenerateKernelModeDLLModuleTarget ()
2548 {
2549 string targetMacro ( GetTargetMacro ( module ) );
2550 string workingDirectory = GetWorkingDirectory ();
2551 string linkDepsMacro = GetLinkingDependenciesMacro ();
2552
2553 GenerateImportLibraryTargetIfNeeded ();
2554
2555 if ( module.non_if_data.compilationUnits.size () > 0 )
2556 {
2557 GenerateRules ();
2558
2559 string dependencies = linkDepsMacro + " " + objectsMacro;
2560
2561 string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
2562 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
2563 module.baseaddress.c_str () );
2564 GenerateLinkerCommand ( dependencies,
2565 linkerParameters,
2566 " -sections" );
2567 }
2568 else
2569 {
2570 GeneratePhonyTarget();
2571 }
2572 }
2573
2574
2575 MingwNativeDLLModuleHandler::MingwNativeDLLModuleHandler (
2576 const Module& module_ )
2577
2578 : MingwModuleHandler ( module_ )
2579 {
2580 }
2581
2582 void
2583 MingwNativeDLLModuleHandler::AddImplicitLibraries ( Module& module )
2584 {
2585 MingwAddCRTLibrary ( module );
2586 MingwAddDebugSupportLibraries ( module, DebugUserMode );
2587 }
2588
2589 void
2590 MingwNativeDLLModuleHandler::Process ()
2591 {
2592 GenerateNativeDLLModuleTarget ();
2593 }
2594
2595 void
2596 MingwNativeDLLModuleHandler::GenerateNativeDLLModuleTarget ()
2597 {
2598 string targetMacro ( GetTargetMacro (module) );
2599 string workingDirectory = GetWorkingDirectory ( );
2600 string linkDepsMacro = GetLinkingDependenciesMacro ();
2601
2602 GenerateImportLibraryTargetIfNeeded ();
2603
2604 if ( module.non_if_data.compilationUnits.size () > 0 )
2605 {
2606 GenerateRules ();
2607
2608 string dependencies = linkDepsMacro + " " + objectsMacro;
2609
2610 string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
2611 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
2612 module.baseaddress.c_str () );
2613 GenerateLinkerCommand ( dependencies,
2614 linkerParameters,
2615 "" );
2616 }
2617 else
2618 {
2619 GeneratePhonyTarget();
2620 }
2621 }
2622
2623
2624 MingwNativeCUIModuleHandler::MingwNativeCUIModuleHandler (
2625 const Module& module_ )
2626
2627 : MingwModuleHandler ( module_ )
2628 {
2629 }
2630
2631 void
2632 MingwNativeCUIModuleHandler::AddImplicitLibraries ( Module& module )
2633 {
2634 MingwAddCRTLibrary ( module );
2635 MingwAddDebugSupportLibraries ( module, DebugUserMode );
2636 }
2637
2638 void
2639 MingwNativeCUIModuleHandler::Process ()
2640 {
2641 GenerateNativeCUIModuleTarget ();
2642 }
2643
2644 void
2645 MingwNativeCUIModuleHandler::GenerateNativeCUIModuleTarget ()
2646 {
2647 string targetMacro ( GetTargetMacro (module) );
2648 string workingDirectory = GetWorkingDirectory ( );
2649 string linkDepsMacro = GetLinkingDependenciesMacro ();
2650
2651 GenerateImportLibraryTargetIfNeeded ();
2652
2653 if ( module.non_if_data.compilationUnits.size () > 0 )
2654 {
2655 GenerateRules ();
2656
2657 string dependencies = linkDepsMacro + " " + objectsMacro;
2658
2659 string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000",
2660 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
2661 module.baseaddress.c_str () );
2662 GenerateLinkerCommand ( dependencies,
2663 linkerParameters,
2664 "" );
2665 }
2666 else
2667 {
2668 GeneratePhonyTarget();
2669 }
2670 }
2671
2672
2673 MingwWin32DLLModuleHandler::MingwWin32DLLModuleHandler (
2674 const Module& module_ )
2675
2676 : MingwModuleHandler ( module_ )
2677 {
2678 }
2679
2680 MingwWin32OCXModuleHandler::MingwWin32OCXModuleHandler (
2681 const Module& module_ )
2682
2683 : MingwModuleHandler ( module_ )
2684 {
2685 }
2686
2687 static void
2688 MingwAddImplicitLibraries( Module &module )
2689 {
2690 Library* pLibrary;
2691
2692 if ( module.type != Win32DLL
2693 && module.type != Win32OCX
2694 && module.type != Win32CUI
2695 && module.type != Win32GUI
2696 && module.type != Win32SCR)
2697 {
2698 return;
2699 }
2700
2701 if ( module.isDefaultEntryPoint )
2702 {
2703 if ( module.IsDLL () )
2704 {
2705 pLibrary = new Library ( module, "mingw_dllmain" );
2706 module.non_if_data.libraries.insert ( module.non_if_data.libraries.begin(), pLibrary );
2707 }
2708 else
2709 {
2710 pLibrary = new Library ( module, module.isUnicode ? "mingw_wmain" : "mingw_main" );
2711 module.non_if_data.libraries.insert ( module.non_if_data.libraries.begin(), pLibrary );
2712 }
2713 }
2714
2715 pLibrary = new Library ( module, "mingw_common" );
2716 module.non_if_data.libraries.push_back ( pLibrary );
2717
2718 MingwAddCRTLibrary ( module );
2719 MingwAddDebugSupportLibraries ( module, DebugUserMode );
2720 }
2721
2722 void
2723 MingwWin32DLLModuleHandler::AddImplicitLibraries ( Module& module )
2724 {
2725 MingwAddImplicitLibraries ( module );
2726 }
2727
2728 void
2729 MingwWin32DLLModuleHandler::Process ()
2730 {
2731 GenerateWin32DLLModuleTarget ();
2732 }
2733
2734 void
2735 MingwWin32DLLModuleHandler::GenerateWin32DLLModuleTarget ()
2736 {
2737 string targetMacro ( GetTargetMacro (module) );
2738 string workingDirectory = GetWorkingDirectory ( );
2739 string linkDepsMacro = GetLinkingDependenciesMacro ();
2740
2741 GenerateImportLibraryTargetIfNeeded ();
2742
2743 if ( module.non_if_data.compilationUnits.size () > 0 )
2744 {
2745 GenerateRules ();
2746
2747 string dependencies = linkDepsMacro + " " + objectsMacro;
2748
2749 string linkerParameters = ssprintf ( "-subsystem=console -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
2750 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
2751 module.baseaddress.c_str () );
2752 GenerateLinkerCommand ( dependencies,
2753 linkerParameters,
2754 "" );
2755 }
2756 else
2757 {
2758 GeneratePhonyTarget();
2759 }
2760 }
2761
2762
2763 void
2764 MingwWin32OCXModuleHandler::AddImplicitLibraries ( Module& module )
2765 {
2766 MingwAddImplicitLibraries ( module );
2767 }
2768
2769 void
2770 MingwWin32OCXModuleHandler::Process ()
2771 {
2772 GenerateWin32OCXModuleTarget ();
2773 }
2774
2775 void
2776 MingwWin32OCXModuleHandler::GenerateWin32OCXModuleTarget ()
2777 {
2778 string targetMacro ( GetTargetMacro (module) );
2779 string workingDirectory = GetWorkingDirectory ( );
2780 string linkDepsMacro = GetLinkingDependenciesMacro ();
2781
2782 GenerateImportLibraryTargetIfNeeded ();
2783
2784 if ( module.non_if_data.compilationUnits.size () > 0 )
2785 {
2786 GenerateRules ();
2787
2788 string dependencies = linkDepsMacro + " " + objectsMacro;
2789
2790 string linkerParameters = ssprintf ( "-subsystem=console -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
2791 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
2792 module.baseaddress.c_str () );
2793 GenerateLinkerCommand ( dependencies,
2794 linkerParameters,
2795 "" );
2796 }
2797 else
2798 {
2799 GeneratePhonyTarget();
2800 }
2801 }
2802
2803
2804 MingwWin32CUIModuleHandler::MingwWin32CUIModuleHandler (
2805 const Module& module_ )
2806
2807 : MingwModuleHandler ( module_ )
2808 {
2809 }
2810
2811 void
2812 MingwWin32CUIModuleHandler::AddImplicitLibraries ( Module& module )
2813 {
2814 MingwAddImplicitLibraries ( module );
2815 }
2816
2817 void
2818 MingwWin32CUIModuleHandler::Process ()
2819 {
2820 GenerateWin32CUIModuleTarget ();
2821 }
2822
2823 void
2824 MingwWin32CUIModuleHandler::GenerateWin32CUIModuleTarget ()
2825 {
2826 string targetMacro ( GetTargetMacro (module) );
2827 string workingDirectory = GetWorkingDirectory ( );
2828 string linkDepsMacro = GetLinkingDependenciesMacro ();
2829
2830 GenerateImportLibraryTargetIfNeeded ();
2831
2832 if ( module.non_if_data.compilationUnits.size () > 0 )
2833 {
2834 GenerateRules ();
2835
2836 string dependencies = linkDepsMacro + " " + objectsMacro;
2837
2838 string linkerParameters = ssprintf ( "-subsystem=console -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000",
2839 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
2840 module.baseaddress.c_str () );
2841 GenerateLinkerCommand ( dependencies,
2842 linkerParameters,
2843 "" );
2844 }
2845 else
2846 {
2847 GeneratePhonyTarget();
2848 }
2849 }
2850
2851
2852 MingwWin32GUIModuleHandler::MingwWin32GUIModuleHandler (
2853 const Module& module_ )
2854
2855 : MingwModuleHandler ( module_ )
2856 {
2857 }
2858
2859 void
2860 MingwWin32GUIModuleHandler::AddImplicitLibraries ( Module& module )
2861 {
2862 MingwAddImplicitLibraries ( module );
2863 }
2864
2865 void
2866 MingwWin32GUIModuleHandler::Process ()
2867 {
2868 GenerateWin32GUIModuleTarget ();
2869 }
2870
2871 void
2872 MingwWin32GUIModuleHandler::GenerateWin32GUIModuleTarget ()
2873 {
2874 string targetMacro ( GetTargetMacro (module) );
2875 string workingDirectory = GetWorkingDirectory ( );
2876 string linkDepsMacro = GetLinkingDependenciesMacro ();
2877
2878 GenerateImportLibraryTargetIfNeeded ();
2879
2880 if ( module.non_if_data.compilationUnits.size () > 0 )
2881 {
2882 GenerateRules ();
2883
2884 string dependencies = linkDepsMacro + " " + objectsMacro;
2885
2886 string linkerParameters = ssprintf ( "-subsystem=windows -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000",
2887 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
2888 module.baseaddress.c_str () );
2889 GenerateLinkerCommand ( dependencies,
2890 linkerParameters,
2891 "" );
2892 }
2893 else
2894 {
2895 GeneratePhonyTarget();
2896 }
2897 }
2898
2899
2900 MingwBootLoaderModuleHandler::MingwBootLoaderModuleHandler (
2901 const Module& module_ )
2902
2903 : MingwModuleHandler ( module_ )
2904 {
2905 }
2906
2907 void
2908 MingwBootLoaderModuleHandler::Process ()
2909 {
2910 GenerateBootLoaderModuleTarget ();
2911 }
2912
2913 void
2914 MingwBootLoaderModuleHandler::GenerateBootLoaderModuleTarget ()
2915 {
2916 string targetName ( module.output->name );
2917 string targetMacro ( GetTargetMacro (module) );
2918 string workingDirectory = GetWorkingDirectory ();
2919 FileLocation junk_tmp ( TemporaryDirectory,
2920 "",
2921 module.name + ".junk.tmp" );
2922 CLEAN_FILE ( junk_tmp );
2923 string objectsMacro = GetObjectsMacro ( module );
2924 string linkDepsMacro = GetLinkingDependenciesMacro ();
2925
2926 GenerateRules ();
2927
2928 fprintf ( fMakefile, "# BOOT LOADER MODULE TARGET\n" );
2929
2930 const FileLocation *target_file = GetTargetFilename ( module, NULL );
2931 fprintf ( fMakefile, "%s: %s %s | %s\n",
2932 targetMacro.c_str (),
2933 objectsMacro.c_str (),
2934 linkDepsMacro.c_str (),
2935 backend->GetFullPath ( *target_file ).c_str () );
2936
2937 fprintf ( fMakefile, "\t$(ECHO_LD)\n" );
2938
2939 if (Environment::GetArch() == "arm")
2940 {
2941 fprintf ( fMakefile,
2942 "\t${gcc} -Wl,--subsystem,native -Wl,--section-start,startup=0x8000 -o %s %s %s %s\n",
2943 backend->GetFullName ( junk_tmp ).c_str (),
2944 objectsMacro.c_str (),
2945 linkDepsMacro.c_str (),
2946 GetLinkerMacro ().c_str ());
2947 }
2948 else
2949 {
2950 fprintf ( fMakefile,
2951 "\t${gcc} -Wl,--subsystem,native -Wl,-Ttext,0x8000 -o %s %s %s %s\n",
2952 backend->GetFullName ( junk_tmp ).c_str (),
2953 objectsMacro.c_str (),
2954 linkDepsMacro.c_str (),
2955 GetLinkerMacro ().c_str ());
2956 }
2957 fprintf ( fMakefile,
2958 "\t${objcopy} -O binary %s $@\n",
2959 backend->GetFullName ( junk_tmp ).c_str () );
2960 GenerateBuildMapCode ( &junk_tmp );
2961 fprintf ( fMakefile,
2962 "\t-@${rm} %s 2>$(NUL)\n",
2963 backend->GetFullName ( junk_tmp ).c_str () );
2964
2965 delete target_file;
2966 }
2967
2968
2969 MingwBootProgramModuleHandler::MingwBootProgramModuleHandler (
2970 const Module& module_ )
2971 : MingwModuleHandler ( module_ )
2972 {
2973 }
2974
2975 void
2976 MingwBootProgramModuleHandler::Process ()
2977 {
2978 GenerateBootProgramModuleTarget ();
2979 }
2980
2981 void
2982 MingwBootProgramModuleHandler::GenerateBootProgramModuleTarget ()
2983 {
2984 string targetName ( module.output->name );
2985 string targetMacro ( GetTargetMacro (module) );
2986 string workingDirectory = GetWorkingDirectory ();
2987 FileLocation junk_tmp ( TemporaryDirectory,
2988 "",
2989 module.name + ".junk.tmp" );
2990 FileLocation junk_elf ( TemporaryDirectory,
2991 "",
2992 module.name + ".junk.elf" );
2993 FileLocation junk_cpy ( TemporaryDirectory,
2994 "",
2995 module.name + ".junk.elf" );
2996 CLEAN_FILE ( junk_tmp );
2997 CLEAN_FILE ( junk_elf );
2998 CLEAN_FILE ( junk_cpy );
2999 string objectsMacro = GetObjectsMacro ( module );
3000 string linkDepsMacro = GetLinkingDependenciesMacro ();
3001 const Module *payload = module.project.LocateModule ( module.payload );
3002
3003 GenerateRules ();
3004
3005 fprintf ( fMakefile, "# BOOT PROGRAM MODULE TARGET\n" );
3006
3007 const FileLocation *target_file = GetTargetFilename ( module, NULL );
3008 fprintf ( fMakefile, "%s: %s %s %s | %s\n",
3009 targetMacro.c_str (),
3010 objectsMacro.c_str (),
3011 linkDepsMacro.c_str (),
3012 payload->name.c_str (),
3013 backend->GetFullPath ( *target_file ).c_str () );
3014
3015 fprintf ( fMakefile, "\t$(ECHO_BOOTPROG)\n" );
3016
3017 fprintf ( fMakefile, "\t$(%s_PREPARE) $(OUTPUT)$(SEP)%s %s\n",
3018 module.buildtype.c_str (),
3019 NormalizeFilename( backend->GetFullName ( *payload->output ) ).c_str (),
3020 backend->GetFullName ( junk_cpy ).c_str () );
3021
3022 fprintf ( fMakefile, "\t${objcopy} $(%s_FLATFORMAT) %s %s\n",
3023 module.buildtype.c_str (),
3024 backend->GetFullName ( junk_cpy ).c_str (),
3025 backend->GetFullName ( junk_tmp ).c_str () );
3026
3027 fprintf ( fMakefile, "\t${ld} $(%s_LINKFORMAT) %s %s -o %s\n",
3028 module.buildtype.c_str (),
3029 linkDepsMacro.c_str (),
3030 backend->GetFullName ( junk_tmp ).c_str (),
3031 backend->GetFullName ( junk_elf ).c_str () );
3032
3033 fprintf ( fMakefile, "\t${objcopy} $(%s_COPYFORMAT) %s $(INTERMEDIATE)$(SEP)%s\n",
3034 module.buildtype.c_str (),
3035 backend->GetFullName ( junk_elf ).c_str (),
3036 backend->GetFullName ( *module.output ) .c_str () );
3037
3038 fprintf ( fMakefile,
3039 "\t-@${rm} %s %s %s 2>$(NUL)\n",
3040 backend->GetFullName ( junk_tmp ).c_str (),
3041 backend->GetFullName ( junk_elf ).c_str (),
3042 backend->GetFullName ( junk_cpy ).c_str () );
3043
3044 delete target_file;
3045 }
3046
3047
3048 MingwIsoModuleHandler::MingwIsoModuleHandler (
3049 const Module& module_ )
3050
3051 : MingwModuleHandler ( module_ )
3052 {
3053 }
3054
3055 void
3056 MingwIsoModuleHandler::Process ()
3057 {
3058 GenerateIsoModuleTarget ();
3059 }
3060
3061 void
3062 MingwIsoModuleHandler::OutputBootstrapfileCopyCommands (
3063 const string& bootcdDirectory )
3064 {
3065 for ( std::map<std::string, Module*>::const_iterator p = module.project.modules.begin (); p != module.project.modules.end (); ++ p )
3066 {
3067 const Module& m = *p->second;
3068 if ( !m.enabled )
3069 continue;
3070 if ( m.bootstrap != NULL )
3071 {
3072 FileLocation targetFile ( OutputDirectory,
3073 m.bootstrap->base.length () > 0
3074 ? bootcdDirectory + sSep + m.bootstrap->base
3075 : bootcdDirectory,
3076 m.bootstrap->nameoncd );
3077 OutputCopyCommand ( *m.output, targetFile );
3078 }
3079 }
3080 }
3081
3082 void
3083 MingwIsoModuleHandler::OutputCdfileCopyCommands (
3084 const string& bootcdDirectory )
3085 {
3086 for ( size_t i = 0; i < module.project.cdfiles.size (); i++ )
3087 {
3088 const CDFile& cdfile = *module.project.cdfiles[i];
3089 FileLocation targetFile ( OutputDirectory,
3090 cdfile.target->relative_path.length () > 0
3091 ? bootcdDirectory + sSep + cdfile.target->relative_path
3092 : bootcdDirectory,
3093 cdfile.target->name );
3094 OutputCopyCommand ( *cdfile.source, targetFile );
3095 }
3096 }
3097
3098 void
3099 MingwIsoModuleHandler::GetBootstrapCdDirectories ( vector<FileLocation>& out,
3100 const string& bootcdDirectory )
3101 {
3102 for ( std::map<std::string, Module*>::const_iterator p = module.project.modules.begin (); p != module.project.modules.end (); ++ p )
3103 {
3104 const Module& m = *p->second;
3105 if ( !m.enabled )
3106 continue;
3107 if ( m.bootstrap != NULL )
3108 {
3109 FileLocation targetDirectory ( OutputDirectory,
3110 m.bootstrap->base.length () > 0
3111 ? bootcdDirectory + sSep + m.bootstrap->base
3112 : bootcdDirectory,
3113 "" );
3114 out.push_back ( targetDirectory );
3115 }
3116 }
3117 }
3118
3119 void
3120 MingwIsoModuleHandler::GetNonModuleCdDirectories ( vector<FileLocation>& out,
3121 const string& bootcdDirectory )
3122 {
3123 for ( size_t i = 0; i < module.project.cdfiles.size (); i++ )
3124 {
3125 const CDFile& cdfile = *module.project.cdfiles[i];
3126 FileLocation targetDirectory ( OutputDirectory,
3127 cdfile.target->relative_path.length () > 0
3128 ? bootcdDirectory + sSep + cdfile.target->relative_path
3129 : bootcdDirectory,
3130 "" );
3131 out.push_back( targetDirectory );
3132 }
3133 }
3134
3135 void
3136 MingwIsoModuleHandler::GetCdDirectories ( vector<FileLocation>& out,
3137 const string& bootcdDirectory )
3138 {
3139 GetBootstrapCdDirectories ( out, bootcdDirectory );
3140 GetNonModuleCdDirectories ( out, bootcdDirectory );
3141 }
3142
3143 void
3144 MingwIsoModuleHandler::GetBootstrapCdFiles (
3145 vector<FileLocation>& out ) const
3146 {
3147 for ( std::map<std::string, Module*>::const_iterator p = module.project.modules.begin (); p != module.project.modules.end (); ++ p )
3148 {
3149 const Module& m = *p->second;
3150 if ( !m.enabled )
3151 continue;
3152 if ( m.bootstrap != NULL )
3153 {
3154 out.push_back ( *m.output );
3155 }
3156 }
3157 }
3158
3159 void
3160 MingwIsoModuleHandler::GetNonModuleCdFiles (
3161 vector<FileLocation>& out ) const
3162 {
3163 for ( size_t i = 0; i < module.project.cdfiles.size (); i++ )
3164 {
3165 const CDFile& cdfile = *module.project.cdfiles[i];
3166 out.push_back ( *cdfile.source );
3167 }
3168 }
3169
3170 void
3171 MingwIsoModuleHandler::GetCdFiles (
3172 vector<FileLocation>& out ) const
3173 {
3174 GetBootstrapCdFiles ( out );
3175 GetNonModuleCdFiles ( out );
3176 }
3177
3178 void
3179 MingwIsoModuleHandler::GenerateIsoModuleTarget ()
3180 {
3181 fprintf ( fMakefile, "# ISO MODULE TARGET\n" );
3182 string bootcdDirectory = "cd";
3183 FileLocation bootcd ( OutputDirectory,
3184 bootcdDirectory,
3185 "" );
3186 FileLocation bootcdReactos ( OutputDirectory,
3187 bootcdDirectory + sSep + Environment::GetCdOutputPath (),
3188 "" );
3189 vector<FileLocation> vSourceFiles, vCdFiles;
3190 vector<FileLocation> vCdDirectories;
3191
3192 // unattend.inf
3193 FileLocation srcunattend ( SourceDirectory,
3194 "boot" + sSep + "bootdata" + sSep + "bootcdregtest",
3195 "unattend.inf" );
3196 FileLocation tarunattend ( bootcdReactos.directory,
3197 bootcdReactos.relative_path,
3198 "unattend.inf" );
3199 if (module.type == IsoRegTest)
3200 vSourceFiles.push_back ( srcunattend );
3201
3202 // bootsector
3203 const Module* bootModule = module.bootSector->bootSectorModule;
3204
3205 if (!bootModule)
3206 {
3207 throw InvalidOperationException ( module.node.location.c_str(),
3208 0,
3209 "Invalid bootsector. module '%s' requires <bootsector>",
3210 module.name.c_str ());
3211 }
3212
3213 const FileLocation *isoboot = bootModule->output;
3214 vSourceFiles.push_back ( *isoboot );
3215
3216 // prepare reactos.dff and reactos.inf
3217 FileLocation reactosDff ( SourceDirectory,
3218 "boot" + sSep + "bootdata" + sSep + "packages",
3219 "reactos.dff" );
3220 FileLocation reactosInf ( bootcdReactos.directory,
3221 bootcdReactos.relative_path,
3222 "reactos.inf" );
3223
3224 vSourceFiles.push_back ( reactosDff );
3225
3226 /*
3227 We use only the name and not full FileLocation(ouput) because Iso/LiveIso are an exception to the general rule.
3228 Iso/LiveIso outputs are generated in code base root
3229 */
3230 string IsoName = module.output->name;
3231
3232 string sourceFiles = v2s ( backend, vSourceFiles, 5 );
3233
3234 // fill cdrom
3235 GetCdDirectories ( vCdDirectories, bootcdDirectory );
3236 GetCdFiles ( vCdFiles );
3237 string cdDirectories = "";//v2s ( vCdDirectories, 5 );
3238 string cdFiles = v2s ( backend, vCdFiles, 5 );
3239
3240 fprintf ( fMakefile, ".PHONY: %s\n\n",
3241 module.name.c_str ());
3242 fprintf ( fMakefile,
3243 "%s: all %s %s %s $(CABMAN_TARGET) $(CDMAKE_TARGET) %s\n",
3244 module.name.c_str (),
3245 backend->GetFullName ( *isoboot ).c_str (),
3246 sourceFiles.c_str (),
3247 cdFiles.c_str (),
3248 cdDirectories.c_str () );
3249 fprintf ( fMakefile,
3250 "\t$(Q)$(CABMAN_TARGET) -C %s -L %s -I -P $(OUTPUT)\n",
3251 backend->GetFullName ( reactosDff ).c_str (),
3252 backend->GetFullPath ( bootcdReactos ).c_str () );
3253 fprintf ( fMakefile,
3254 "\t$(Q)$(CABMAN_TARGET) -C %s -RC %s -L %s -N -P $(OUTPUT)\n",
3255 backend->GetFullName ( reactosDff ).c_str (),
3256 backend->GetFullName ( reactosInf ).c_str (),
3257 backend->GetFullPath ( bootcdReactos ).c_str ());
3258 fprintf ( fMakefile,
3259 "\t-@${rm} %s 2>$(NUL)\n",
3260 backend->GetFullName ( reactosInf ).c_str () );
3261 OutputBootstrapfileCopyCommands ( bootcdDirectory );
3262 OutputCdfileCopyCommands ( bootcdDirectory );
3263
3264 if (module.type == IsoRegTest)
3265 OutputCopyCommand ( srcunattend, tarunattend );
3266
3267 fprintf ( fMakefile, "\t$(ECHO_CDMAKE)\n" );
3268 fprintf ( fMakefile,
3269 "\t$(Q)$(CDMAKE_TARGET) -v -j -m -b %s %s REACTOS %s\n",
3270 backend->GetFullName ( *isoboot ).c_str (),
3271 backend->GetFullPath ( bootcd ).c_str (),
3272 IsoName.c_str() );
3273 fprintf ( fMakefile,
3274 "\n" );
3275 }
3276
3277
3278 MingwLiveIsoModuleHandler::MingwLiveIsoModuleHandler (
3279 const Module& module_ )
3280
3281 : MingwModuleHandler ( module_ )
3282 {
3283 }
3284
3285 void
3286 MingwLiveIsoModuleHandler::Process ()
3287 {
3288 GenerateLiveIsoModuleTarget ();
3289 }
3290
3291 void
3292 MingwLiveIsoModuleHandler::CreateDirectory ( const string& directory )
3293 {
3294 FileLocation dir ( OutputDirectory,
3295 directory,
3296 "" );
3297 MingwModuleHandler::PassThruCacheDirectory ( &dir );
3298 }
3299
3300 void
3301 MingwLiveIsoModuleHandler::OutputModuleCopyCommands ( string& livecdDirectory,
3302 string& reactosDirectory )
3303 {
3304 for ( std::map<std::string, Module*>::const_iterator p = module.project.modules.begin (); p != module.project.modules.end (); ++ p )
3305 {
3306 const Module& m = *p->second;
3307 if ( !m.enabled )
3308 continue;
3309 if ( m.install )
3310 {
3311 const Module& aliasedModule = backend->GetAliasedModuleOrModule ( m );
3312 FileLocation destination ( OutputDirectory,
3313 m.install->relative_path.length () > 0
3314 ? livecdDirectory + sSep + reactosDirectory + sSep + m.install->relative_path
3315 : livecdDirectory + sSep + reactosDirectory,
3316 m.install->name );
3317 OutputCopyCommand ( *aliasedModule.output,
3318 destination);
3319 }
3320 }
3321 }
3322
3323 void
3324 MingwLiveIsoModuleHandler::OutputNonModuleCopyCommands ( string& livecdDirectory,
3325 string& reactosDirectory )
3326 {
3327 for ( size_t i = 0; i < module.project.installfiles.size (); i++ )
3328 {
3329 const InstallFile& installfile = *module.project.installfiles[i];
3330 FileLocation target ( OutputDirectory,
3331 installfile.target->relative_path.length () > 0
3332 ? livecdDirectory + sSep + reactosDirectory + sSep + installfile.target->relative_path
3333 : livecdDirectory + sSep + reactosDirectory,
3334 installfile.target->name );
3335 OutputCopyCommand ( *installfile.source, target );
3336 }
3337 }
3338
3339 void
3340 MingwLiveIsoModuleHandler::OutputProfilesDirectoryCommands ( string& livecdDirectory )
3341 {
3342 CreateDirectory ( livecdDirectory + sSep + "Profiles" );
3343 CreateDirectory ( livecdDirectory + sSep + "Profiles" + sSep + "All Users") ;
3344 CreateDirectory ( livecdDirectory + sSep + "Profiles" + sSep + "All Users" + sSep + "Desktop" );
3345 CreateDirectory ( livecdDirectory + sSep + "Profiles" + sSep + "Default User" );
3346 CreateDirectory ( livecdDirectory + sSep + "Profiles" + sSep + "Default User" + sSep + "Desktop" );
3347 CreateDirectory ( livecdDirectory + sSep + "Profiles" + sSep + "Default User" + sSep + "My Documents" );
3348
3349 FileLocation livecdIni ( SourceDirectory,
3350 "boot" + sSep + "bootdata",
3351 "livecd.ini" );
3352 FileLocation destination ( OutputDirectory,
3353 livecdDirectory,
3354 "freeldr.ini" );
3355 OutputCopyCommand ( livecdIni,
3356 destination );
3357 }
3358
3359 void
3360 MingwLiveIsoModuleHandler::OutputLoaderCommands ( string& livecdDirectory )
3361 {
3362 FileLocation freeldr ( OutputDirectory,
3363 "boot" + sSep + "freeldr" + sSep + "freeldr",
3364 "freeldr.sys" );
3365 FileLocation destination ( OutputDirectory,
3366 livecdDirectory + sSep + "loader",
3367 "setupldr.sys" );
3368 OutputCopyCommand ( freeldr,
3369 destination );
3370 }
3371
3372 void
3373 MingwLiveIsoModuleHandler::OutputRegistryCommands ( string& livecdDirectory )
3374 {
3375 fprintf ( fMakefile, "# REGISTRY COMMANDS\n" );
3376 FileLocation reactosSystem32ConfigDirectory ( OutputDirectory,
3377 livecdDirectory + sSep + "reactos" + sSep + "system32" + sSep + "config",
3378 "" );
3379 fprintf ( fMakefile,
3380 "\t$(ECHO_MKHIVE)\n" );
3381 fprintf ( fMakefile,
3382 "\t$(MKHIVE_TARGET) boot%cbootdata %s $(ARCH) boot%cbootdata%clivecd.inf boot%cbootdata%chiveinst_$(ARCH).inf\n",
3383 cSep, backend->GetFullPath ( reactosSystem32ConfigDirectory ).c_str (),
3384 cSep, cSep, cSep, cSep );
3385 }
3386
3387 void
3388 MingwLiveIsoModuleHandler::GenerateLiveIsoModuleTarget ()
3389 {
3390 fprintf ( fMakefile, "# LIVE ISO MODULE TARGET\n" );
3391 string livecdDirectory = module.name;
3392 FileLocation livecd ( OutputDirectory, livecdDirectory, "" );
3393
3394 string IsoName;
3395
3396 // bootsector
3397 const Module* bootModule = module.bootSector->bootSectorModule;
3398
3399 if (!bootModule)
3400 {
3401 throw InvalidOperationException ( module.node.location.c_str(),
3402 0,
3403 "Invalid bootsector. module '%s' requires <bootsector>",
3404 module.name.c_str ());
3405 }
3406
3407 const FileLocation *isoboot = bootModule->output;
3408
3409 /*
3410 We use only the name and not full FileLocation(ouput) because Iso/LiveIso are an exception to the general rule.
3411 Iso/LiveIso outputs are generated in code base root
3412 */
3413 IsoName = module.output->name;
3414
3415 string reactosDirectory = "reactos";
3416 string livecdReactosNoFixup = livecdDirectory + sSep + reactosDirectory;
3417 FileLocation livecdReactos ( OutputDirectory,
3418 livecdReactosNoFixup,
3419 "" );
3420 CLEAN_FILE ( livecdReactos );
3421
3422 fprintf ( fMakefile, ".PHONY: %s\n\n",
3423 module.name.c_str ());
3424 fprintf ( fMakefile,
3425 "%s: all %s %s $(MKHIVE_TARGET) $(CDMAKE_TARGET)\n",
3426 module.name.c_str (),
3427 backend->GetFullName ( *isoboot) .c_str (),
3428 backend->GetFullPath ( livecdReactos ).c_str () );
3429 OutputModuleCopyCommands ( livecdDirectory,
3430 reactosDirectory );
3431 OutputNonModuleCopyCommands ( livecdDirectory,
3432 reactosDirectory );
3433 OutputProfilesDirectoryCommands ( livecdDirectory );
3434 OutputLoaderCommands ( livecdDirectory );
3435 OutputRegistryCommands ( livecdDirectory );
3436 fprintf ( fMakefile, "\t$(ECHO_CDMAKE)\n" );
3437 fprintf ( fMakefile,
3438 "\t$(Q)$(CDMAKE_TARGET) -v -m -j -b %s %s REACTOS %s\n",
3439 backend->GetFullName( *isoboot ).c_str (),
3440 backend->GetFullPath ( livecd ).c_str (),
3441 IsoName.c_str() );
3442 fprintf ( fMakefile,
3443 "\n" );
3444 }
3445
3446
3447 MingwTestModuleHandler::MingwTestModuleHandler (
3448 const Module& module_ )
3449
3450 : MingwModuleHandler ( module_ )
3451 {
3452 }
3453
3454 void
3455 MingwTestModuleHandler::Process ()
3456 {
3457 GenerateTestModuleTarget ();
3458 }
3459
3460 /* caller needs to delete the returned object */
3461 void
3462 MingwTestModuleHandler::GetModuleSpecificCompilationUnits ( vector<CompilationUnit*>& compilationUnits )
3463 {
3464 compilationUnits.push_back ( new CompilationUnit ( new File ( IntermediateDirectory, module.output->relative_path + sSep + "..", module.name + "_hooks.c", false, "", false ) ) );
3465 compilationUnits.push_back ( new CompilationUnit ( new File ( IntermediateDirectory, module.output->relative_path + sSep + "..", module.name + "_stubs.S", false, "", false ) ) );
3466 compilationUnits.push_back ( new CompilationUnit ( new File ( IntermediateDirectory, module.output->relative_path + sSep + "..", module.name + "_startup.c", false, "", false ) ) );
3467 }
3468
3469 void
3470 MingwTestModuleHandler::GenerateTestModuleTarget ()
3471 {
3472 string targetMacro ( GetTargetMacro ( module ) );
3473 string workingDirectory = GetWorkingDirectory ( );
3474 string linkDepsMacro = GetLinkingDependenciesMacro ();
3475
3476 GenerateImportLibraryTargetIfNeeded ();
3477
3478 if ( module.non_if_data.compilationUnits.size () > 0 )
3479 {
3480 GenerateRules ();
3481
3482 string dependencies = linkDepsMacro + " " + objectsMacro;
3483
3484 string linkerParameters = ssprintf ( "-subsystem=console -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000",
3485 module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
3486 module.baseaddress.c_str () );
3487 GenerateLinkerCommand ( dependencies,
3488 linkerParameters,
3489 "" );
3490 }
3491 else
3492 {
3493 GeneratePhonyTarget();
3494 }
3495 }
3496
3497
3498 MingwAliasModuleHandler::MingwAliasModuleHandler (
3499 const Module& module_ )
3500
3501 : MingwModuleHandler ( module_ )
3502 {
3503 }
3504
3505 void
3506 MingwAliasModuleHandler::Process ()
3507 {
3508 }
3509
3510
3511 MingwCabinetModuleHandler::MingwCabinetModuleHandler (
3512 const Module& module_ )
3513
3514 : MingwModuleHandler ( module_ )
3515 {
3516 }
3517
3518 void
3519 MingwCabinetModuleHandler::Process ()
3520 {
3521 string targetMacro ( GetTargetMacro (module) );
3522
3523 GenerateRules ();
3524
3525 fprintf ( fMakefile, "# CABINET MODULE TARGET\n" );
3526 const FileLocation *target_file = GetTargetFilename ( module, NULL );
3527 fprintf ( fMakefile, "%s: $(CABMAN_TARGET) | %s\n",
3528 targetMacro.c_str (),
3529 backend->GetFullPath ( *target_file ).c_str () );
3530
3531 fprintf ( fMakefile, "\t$(ECHO_CABMAN)\n" );
3532 fprintf ( fMakefile,
3533 "\t$(Q)$(CABMAN_TARGET) -M raw -S %s $(%s_SOURCES)\n", // Escape the asterisk for Make
3534 targetMacro.c_str (),
3535 module.name.c_str());
3536 }
3537
3538 MingwElfExecutableModuleHandler::MingwElfExecutableModuleHandler (
3539 const Module& module_ )
3540
3541 : MingwModuleHandler ( module_ )
3542 {
3543 }
3544
3545 void
3546 MingwElfExecutableModuleHandler::Process ()
3547 {
3548 string targetName ( module.output->name );
3549 string targetMacro ( GetTargetMacro (module) );
3550 string workingDirectory = GetWorkingDirectory ();
3551 string objectsMacro = GetObjectsMacro ( module );
3552 string linkDepsMacro = GetLinkingDependenciesMacro ();
3553 string libsMacro = GetLibsMacro ();
3554
3555 GenerateRules ();
3556
3557 fprintf ( fMakefile, "# ELF EXECUTABLE TARGET\n" );
3558 const FileLocation *target_file = GetTargetFilename ( module, NULL );
3559 fprintf ( fMakefile, "%s: %s %s | %s\n",
3560 targetMacro.c_str (),
3561 objectsMacro.c_str (),
3562 linkDepsMacro.c_str (),
3563 backend->GetFullPath ( *target_file ).c_str () );
3564
3565 fprintf ( fMakefile, "\t$(ECHO_BOOTPROG)\n" );
3566
3567 fprintf ( fMakefile, "\t${gcc} $(%s_LINKFORMAT) %s %s %s -o %s\n",
3568 module.buildtype.c_str(),
3569 objectsMacro.c_str(),
3570 libsMacro.c_str(),
3571 DEBUG_FORMAT,
3572 targetMacro.c_str () );
3573
3574 delete target_file;
3575 }