X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=doc%2Fdoxygen%2Fcompiling.txt;h=d7b9a2976198b10d3910e4226354c74b4ab9e479;hb=3dc6e2e86821303784512f86805683f1fda14ccb;hp=4cc769f7e486bf5cbdce4f8896f46cf5f6bbd1a8;hpb=b0080e69d64ce69e21c8ce1b22b1bb7f888f1e58;p=rtaudio.git diff --git a/doc/doxygen/compiling.txt b/doc/doxygen/compiling.txt index 4cc769f..d7b9a29 100644 --- a/doc/doxygen/compiling.txt +++ b/doc/doxygen/compiling.txt @@ -2,7 +2,7 @@ \section debug Debugging -If you are having problems getting RtAudio to run on your system, make sure to pass a value of \e true to the RtAudio::showWarnings() function (this is the default setting). A variety of warning messages will be displayed which may help in determining the problem. Also, try using the programs included in the tests directory. The program probe displays the queried capabilities of all hardware devices found for all APIs compiled. When using the ALSA API, further information can be displayed by defining the preprocessor definition __RTAUDIO_DEBUG__. +If you are having problems getting RtAudio to run on your system, make sure to pass a value of \e true to the RtAudio::showWarnings() function (this is the default setting). A variety of warning messages will be displayed which may help in determining the problem. Also, try using the programs included in the tests directory. The program audioprobe displays the queried capabilities of all hardware devices found for all APIs compiled. When using the ALSA API, further information can be displayed by defining the preprocessor definition __RTAUDIO_DEBUG__. \section compile Compiling @@ -24,7 +24,7 @@ In order to compile RtAudio for a specific OS and audio API, it is necessary to RtApiAlsa __LINUX_ALSA__ asound, pthread - g++ -Wall -D__LINUX_ALSA__ -o probe probe.cpp RtAudio.cpp -lasound -lpthread + g++ -Wall -D__LINUX_ALSA__ -o audioprobe audioprobe.cpp RtAudio.cpp -lasound -lpthread Linux @@ -32,7 +32,7 @@ In order to compile RtAudio for a specific OS and audio API, it is necessary to RtApiOss __LINUX_OSS__ pthread - g++ -Wall -D__LINUX_OSS__ -o probe probe.cpp RtAudio.cpp -lpthread + g++ -Wall -D__LINUX_OSS__ -o audioprobe audioprobe.cpp RtAudio.cpp -lpthread Linux or Macintosh OS-X @@ -40,7 +40,7 @@ In order to compile RtAudio for a specific OS and audio API, it is necessary to RtApiJack __UNIX_JACK__ jack, pthread - g++ -Wall -D__UNIX_JACK__ -o probe probe.cpp RtAudio.cpp `pkg-config --cflags --libs jack` -lpthread + g++ -Wall -D__UNIX_JACK__ -o audioprobe audioprobe.cpp RtAudio.cpp `pkg-config --cflags --libs jack` -lpthread @@ -49,7 +49,7 @@ In order to compile RtAudio for a specific OS and audio API, it is necessary to RtApiCore __MACOSX_CORE__ pthread, CoreAudio - g++ -Wall -D__MACOSX_CORE__ -o probe probe.cpp RtAudio.cpp -framework CoreAudio -lpthread + g++ -Wall -D__MACOSX_CORE__ -o audioprobe audioprobe.cpp RtAudio.cpp -framework CoreAudio -lpthread Windows @@ -70,7 +70,7 @@ In order to compile RtAudio for a specific OS and audio API, it is necessary to

-The example compiler statements above could be used to compile the probe.cpp example file, assuming that probe.cpp, RtAudio.h, RtError.h, and RtAudio.cpp all exist in the same directory. +The example compiler statements above could be used to compile the audioprobe.cpp example file, assuming that audioprobe.cpp, RtAudio.h, RtError.h, and RtAudio.cpp all exist in the same directory. */