Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizGeneral Tech Bugs & Fixes 2 years ago
Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
In general it is possible to compile a program from source in cygwin if it runs in Linux.
The method is the same as reported on https://wwwu.uni-klu.ac.at/magostin/cirkuit.html without the sudo portion that in cygwin does not exist:
tar xzvf cirkuit-x.y.z.tar.gz cd cirkuit-x.y.z mkdir build cd build cmake .. -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` make make install
of course you will need to install all needed tools https://cygwin.com/cygwin-ug-net/setup-net.html#setup-packages
You will need as minimum the compiler gcc-core
plus cmake
and make
plus the package that contains kde4-config
.
$ cygcheck -p bin/kde4-config
Found 6 matches for bin/kde4-config
...
libkdecore5-4.14.38-3 - libkdecore5: KDE4 application framework
The suggested packages for Debian
texlive-latex-base texlive-latex-recommended texlive-pstricks texlive-base-bin texlive-extra-utils preview-latex-style m4 ghostscript pdf2svg cmake kdelibs5-dev libqt4-dev libpoppler-qt4-dev
have equal or similar names in Cygwin. As example:
libpoppler-qt4-dev -> libpoppler-qt4-devel
the full list of available packages: https://cygwin.com/packages/package_list.html
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
General Tech 10 Answers
General Tech 7 Answers
General Tech 3 Answers
General Tech 9 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.
manpreet
Best Answer
2 years ago
This question was off-topic on Unix & Linux so I decided to post it here. I am using Windows 8.1 and I don't use Linux so I have never installed something like Cygwin even though I heard about it many times. I want to install a program called "Cirkuit". It is a KDE4 GUI-app that creates circuit diagrams and converts them into Latex code. Here is the official website of the program.
How to install all the required stuff to make it up and running on a Windows PC so that I can get back to writing Latex documents.