forked from OSchip/llvm-project
Update autogen'd LLDB_vers.c.
The makefile build uses scripts/generate-vers.pl to build an appropriate LLDB_vers.c file. The declarations for these symbols now carry a liblldb_core prefix so update the script to generate the correct names. llvm-svn: 128135
This commit is contained in:
parent
ad65c0511f
commit
e9b1491d49
|
@ -41,6 +41,6 @@ $lowercase_name = lc $product_name;
|
|||
|
||||
close $pbxproj;
|
||||
|
||||
$file_string = " const unsigned char ".$uppercase_name."VersionString[] __attribute__ ((used)) = \"@(#)PROGRAM:".$uppercase_name." PROJECT:".$lowercase_name."-".$current_project_version."\" \"\\n\"; const double ".$uppercase_name."VersionNumber __attribute__ ((used)) = (double)".$current_project_version.".;\n";
|
||||
$file_string = " const unsigned char liblldb_coreVersionString[] __attribute__ ((used)) = \"@(#)PROGRAM:".$uppercase_name." PROJECT:".$lowercase_name."-".$current_project_version."\" \"\\n\"; const double liblldb_coreVersionNumber __attribute__ ((used)) = (double)".$current_project_version.".;\n";
|
||||
|
||||
print $file_string;
|
||||
|
|
Loading…
Reference in New Issue