-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated version to 9.0.2 and restored missing file
- Loading branch information
Showing
5 changed files
with
92 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
+ Compile sleigh languages within this module. | ||
+ Sleigh compiler options are read from the sleighArgs.txt file. | ||
+ Eclipse: right-click on this file and choose menu item "Run As->Ant Build" | ||
--> | ||
|
||
<project name="privateBuildDeveloper" default="sleighCompile"> | ||
|
||
<property name="sleigh.compile.class" value="ghidra.pcodeCPort.slgh_compile.SleighCompile"/> | ||
|
||
<!--Import optional ant properties. GhidraDev Eclipse plugin produces this so this file can find the Ghidra installation--> | ||
<import file="../.antProperties.xml" optional="false" /> | ||
|
||
<target name="sleighCompile"> | ||
|
||
<!-- If language module is detached from installation, get Ghidra installation directory path from imported properties --> | ||
<property name="framework.path" value="${ghidra.install.dir}/Ghidra/Framework"/> | ||
|
||
<path id="sleigh.class.path"> | ||
<fileset dir="${framework.path}/SoftwareModeling/lib"> | ||
<include name="*.jar"/> | ||
</fileset> | ||
<fileset dir="${framework.path}/Generic/lib"> | ||
<include name="*.jar"/> | ||
</fileset> | ||
<fileset dir="${framework.path}/Utility/lib"> | ||
<include name="*.jar"/> | ||
</fileset> | ||
</path> | ||
|
||
<available classname="${sleigh.compile.class}" classpathref="sleigh.class.path" property="sleigh.compile.exists"/> | ||
|
||
<fail unless="sleigh.compile.exists" /> | ||
|
||
<java classname="${sleigh.compile.class}" | ||
classpathref="sleigh.class.path" | ||
fork="true" | ||
failonerror="true"> | ||
<jvmarg value="-Xmx2048M"/> | ||
<arg value="-i"/> | ||
<arg value="sleighArgs.txt"/> | ||
<arg value="-a"/> | ||
<arg value="./languages"/> | ||
</java> | ||
|
||
</target> | ||
|
||
</project> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters