-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #44: Synchronisation between TeXlipse editor and viewer
* Change bundle shape so that texlipse.jar is exposed * Update Windows DLLs to use new o.e.texlipse namespace * Include Windows DLLs in source code (shoud not change) * Describe build procedure for Windows DLLs Task-Url: #44
- Loading branch information
Showing
13 changed files
with
52 additions
and
34 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
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 |
---|---|---|
@@ -1,4 +1,2 @@ | ||
/ddeclient-x86.dll | ||
/ddeclient-x86_64.dll | ||
/jazzy-core.jar | ||
/texlipse.jar |
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,33 @@ | ||
# Building the Windows binaries | ||
|
||
The Windows DDE client is used to synchronize the editor within Eclipse and | ||
the preview opened in an external viewer. | ||
|
||
The Windows binaries _ddeclient-x86_64.dll_ and _ddeclient-x86.dll_ can be | ||
built on a Windows 10 host using the Linux subsystem and MinGW. Note that | ||
Java 8 must be installed on Windows. | ||
|
||
See https://msdn.microsoft.com/en-us/commandline/wsl/install-win10 for details | ||
on how to install the Linux subsystem for Windows. | ||
|
||
Then execute the following sequence to install MinGW | ||
|
||
sudo apt-get install mingw-w64 | ||
|
||
Follow up by cloning this repository | ||
|
||
git clone https://github.com/eclipse/texlipse.git | ||
|
||
Now the 32-bit and 64-bit clients can be built. Make sure that each of | ||
these lines are combined into one as they cannot be copy-pasted into the | ||
Windows Bash shell. The path to the JDK may also have to be adjusted. | ||
|
||
i686-w64-mingw32-gcc -shared -o./texlipse/org.eclipse.texlipse/ddeclient-x86.dll \ | ||
-I"/mnt/c/Program Files/Java/jdk1.8.0_151/include/" \ | ||
-I"/mnt/c/Program Files/Java/jdk1.8.0_151/include/win32/" \ | ||
./texlipse/org.eclipse.texlipse/cppsource/ddeclient.cpp | ||
|
||
x86_64-w64-mingw32-gcc -shared -o./texlipse/org.eclipse.texlipse/ddeclient-x86_64.dll \ | ||
-I"/mnt/c/Program Files/Java/jdk1.8.0_151/include/" \ | ||
-I"/mnt/c/Program Files/Java/jdk1.8.0_151/include/win32/" \ | ||
./texlipse/org.eclipse.texlipse/cppsource/ddeclient.cpp |
Binary file not shown.
Binary file not shown.
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
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