Skip to content
Snippets Groups Projects
Commit b2d7555f authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 2000-01-18 11:51:08 by simonmar]

Don't attempt to split objects built from _stub files.

Patch from Michael Weber <michael.weber@post.rwth-aachen.de>.
parent 5adf2314
No related merge requests found
...@@ -2171,7 +2171,7 @@ sub runAs { ...@@ -2171,7 +2171,7 @@ sub runAs {
# need to add the -I flags in case the file is going through cpp (.S files) # need to add the -I flags in case the file is going through cpp (.S files)
local($includes) = '-I' . join(' -I', @Include_dir); local($includes) = '-I' . join(' -I', @Include_dir);
if ( ! $SplitObjFiles ) { if ( ! $SplitObjFiles || $ifile_root =~ /_stub\.s$/ ) {
local($to_do) = "$asmblr -o $as_out -c @As_flags $includes $cc_as"; local($to_do) = "$asmblr -o $as_out -c @As_flags $includes $cc_as";
push(@Files_to_tidy, $as_out ); push(@Files_to_tidy, $as_out );
&run_something($to_do, 'Unix assembler'); &run_something($to_do, 'Unix assembler');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment