Texmaker and TeXstudioTexMakerX (with interactive spellchecking!)

Information and discussion about Texmaker, an integrated LaTeX environment for several platforms, and the related TeXstudio
Post Reply
ITA793594
Posts: 43
Joined: Wed Mar 11, 2009 7:25 pm

Re: TexMakerX (with interactive spellchecking!)

Post by ITA793594 »

how to build in windows Visual Studio 2008!?

thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
benibela
Posts: 97
Joined: Thu Aug 09, 2007 8:13 pm

Re: TexMakerX (with interactive spellchecking!)

Post by benibela »

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
ITA793594
Posts: 43
Joined: Wed Mar 11, 2009 7:25 pm

Re: TexMakerX (with interactive spellchecking!)

Post by ITA793594 »

well too difficult for me!!

I'll wai netx release!

thanks!
ITA793594
Posts: 43
Joined: Wed Mar 11, 2009 7:25 pm

Re: TexMakerX (with interactive spellchecking!)

Post by ITA793594 »

how to download the svn in linux?

thanks!
benibela
Posts: 97
Joined: Thu Aug 09, 2007 8:13 pm

Re: TexMakerX (with interactive spellchecking!)

Post by benibela »

Just type in the terminal:
svn co https://texmakerx.svn.sourceforge.net/svnroot/texmakerx/trunk texmakerx
ITA793594
Posts: 43
Joined: Wed Mar 11, 2009 7:25 pm

Re: TexMakerX (with interactive spellchecking!)

Post by ITA793594 »

i have updated texmaker using svn. Now, when i type:
qmake texmakerx.pro

it gives me:

texmakerx.pro:2: Unknown replace function: unique
benibela
Posts: 97
Joined: Thu Aug 09, 2007 8:13 pm

Re: TexMakerX (with interactive spellchecking!)

Post by benibela »

Huh? That seems impossible.

Are you sure you are (still) using QT >= 4.3?
(type qmake -v to check)
yunghsianghan
Posts: 21
Joined: Mon Apr 06, 2009 2:03 am

Re: TexMakerX (with interactive spellchecking!)

Post by yunghsianghan »

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
benibela
Posts: 97
Joined: Thu Aug 09, 2007 8:13 pm

Re: TexMakerX (with interactive spellchecking!)

Post by benibela »

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)
yunghsianghan
Posts: 21
Joined: Mon Apr 06, 2009 2:03 am

Re: TexMakerX (with interactive spellchecking!)

Post by yunghsianghan »

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
Post Reply