Texmaker and TeXstudio ⇒ TexMakerX (with interactive spellchecking!)
Re: TexMakerX (with interactive spellchecking!)
thanks!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: TexMakerX (with interactive spellchecking!)
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!)
I'll wai netx release!
thanks!
Re: TexMakerX (with interactive spellchecking!)
thanks!
Re: TexMakerX (with interactive spellchecking!)
svn co https://texmakerx.svn.sourceforge.net/svnroot/texmakerx/trunk texmakerx
Re: TexMakerX (with interactive spellchecking!)
qmake texmakerx.pro
it gives me:
texmakerx.pro:2: Unknown replace function: unique
Re: TexMakerX (with interactive spellchecking!)
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!)
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!)
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!)
Sam