Texmaker and TeXstudio ⇒ TexMakerX (with interactive spellchecking!)
Re: TexMakerX (with interactive spellchecking!)
how to build in windows Visual Studio 2008!?
thanks!
thanks!
Re: TexMakerX (with interactive spellchecking!)
Oh, I don't know if that is even possible. (actually, if I had Visual Studio, I would have modified Texniccenter instead of Texmaker 
But after the qmake documentation: if you call qmake -t vcapp texmakerx.pro, it should create a Visual Studio project file for it
Or perhaps just qmake texmakerx.pro creates a vs compatible makefile if qt is correctly configured

But after the qmake documentation: if you call qmake -t vcapp texmakerx.pro, it should create a Visual Studio project file for it
Or perhaps just qmake texmakerx.pro creates a vs compatible makefile if qt is correctly configured
Re: TexMakerX (with interactive spellchecking!)
well too difficult for me!!
I'll wai netx release!
thanks!
I'll wai netx release!
thanks!
Re: TexMakerX (with interactive spellchecking!)
how to download the svn in linux?
thanks!
thanks!
Re: TexMakerX (with interactive spellchecking!)
Just type in the terminal:
svn co https://texmakerx.svn.sourceforge.net/svnroot/texmakerx/trunk texmakerx
svn co https://texmakerx.svn.sourceforge.net/svnroot/texmakerx/trunk texmakerx
Re: TexMakerX (with interactive spellchecking!)
i have updated texmaker using svn. Now, when i type:
qmake texmakerx.pro
it gives me:
texmakerx.pro:2: Unknown replace function: unique
qmake texmakerx.pro
it gives me:
texmakerx.pro:2: Unknown replace function: unique
Re: TexMakerX (with interactive spellchecking!)
Huh? That seems impossible.
Are you sure you are (still) using QT >= 4.3?
(type qmake -v to check)
Are you sure you are (still) using QT >= 4.3?
(type qmake -v to check)
-
- Posts: 21
- Joined: Mon Apr 06, 2009 2:03 am
Re: TexMakerX (with interactive spellchecking!)
I tried to compile texmakerx source file on mac but it failed. The error message is as follows:
collect2: ld returned 1 exit status
lipo: can't open input file: /var/tmp//ccwFLCmU.out (No such file or directory)
make[2]: *** [texmakerx.app/Contents/MacOS/texmakerx] Error 1
make[1]: *** [release-install] Error 2
make: *** [sub-texmakerapp-pro-install_subtargets-ordered] Error 2
Compilation and installation done
Can someone help? I checked texmakerx.app/Contents/MacOS/ and nothing in it.
Thanks!
Sincerely,
Sam
collect2: ld returned 1 exit status
lipo: can't open input file: /var/tmp//ccwFLCmU.out (No such file or directory)
make[2]: *** [texmakerx.app/Contents/MacOS/texmakerx] Error 1
make[1]: *** [release-install] Error 2
make: *** [sub-texmakerapp-pro-install_subtargets-ordered] Error 2
Compilation and installation done
Can someone help? I checked texmakerx.app/Contents/MacOS/ and nothing in it.
Thanks!
Sincerely,
Sam
Re: TexMakerX (with interactive spellchecking!)
There are some problems with MacOS, but I cann't test it there.
Strangely everyone gets a different error message...
If you have time, you could try some of these:
1. You can compile it in the terminal with ./build.sh, qmake texmakerx.pro or qmake -macx -spec macx-g++ texmakerx.pro, although all these commands should all be equal, perhaps one of them works, where the others fail.
2. The only real difference to the working unix code seems to be the lines CONFIG += link_prl x86 ppc and QMAKE_MAC_SDK=... in texmakerapp.pro.
Perhaps it work, if you remove them, or just the word link_prl (which has something to do with the failing linking)
3. link_prl is said to expect a create_prl, so it make sense to leave it there, but add a CONFIG+=create_prl in qcodeedit/lib/lib.pro.
4. Compile first the QCodeedit library with qcodeedit/lib/lib.pro and then texmakerx with texmakerapp.pro (so call qmake or qmake -macx -spec macx-g++ with this file name and then "make" in the directory the pro file lies, be sure to remove all Makefiles before doing this)
@ITA793594:
Actually the config-function isn't needed, it's just a savety call, so it works equal on all systems. If it doesn't work already, you can remove every CONFIG = $$unique(CONFIG) line (there are 3, in texmakerx.pro, texmakerapp.pro and qcodeedit/lib/lib.pro)
Strangely everyone gets a different error message...
If you have time, you could try some of these:
1. You can compile it in the terminal with ./build.sh, qmake texmakerx.pro or qmake -macx -spec macx-g++ texmakerx.pro, although all these commands should all be equal, perhaps one of them works, where the others fail.
2. The only real difference to the working unix code seems to be the lines CONFIG += link_prl x86 ppc and QMAKE_MAC_SDK=... in texmakerapp.pro.
Perhaps it work, if you remove them, or just the word link_prl (which has something to do with the failing linking)
3. link_prl is said to expect a create_prl, so it make sense to leave it there, but add a CONFIG+=create_prl in qcodeedit/lib/lib.pro.
4. Compile first the QCodeedit library with qcodeedit/lib/lib.pro and then texmakerx with texmakerapp.pro (so call qmake or qmake -macx -spec macx-g++ with this file name and then "make" in the directory the pro file lies, be sure to remove all Makefiles before doing this)
@ITA793594:
Actually the config-function isn't needed, it's just a savety call, so it works equal on all systems. If it doesn't work already, you can remove every CONFIG = $$unique(CONFIG) line (there are 3, in texmakerx.pro, texmakerapp.pro and qcodeedit/lib/lib.pro)
-
- Posts: 21
- Joined: Mon Apr 06, 2009 2:03 am
Re: TexMakerX (with interactive spellchecking!)
I am not good on programming. I have taken out all CONFIG lines but it still failed. I then compiled the source code of texmaker and it worked. Hence, it should related to the module you added or modified. Thanks!
Sam
Sam