Reverted some Win64 gcc 4.8 related stuff as we are on gcc4.9 now, Issue 2708
This commit is contained in:
@@ -121,7 +121,7 @@ WINDOWS
|
||||
INSTALL THE TOOLCHAIN
|
||||
- TDM-GCC On-Demand Installer
|
||||
http://tdm-gcc.tdragon.net/download
|
||||
GCC 4.7 is recommended, as under some conditions older
|
||||
GCC 4.9 is recommended for Win64 builds, as under some conditions older
|
||||
versions of GCC can cause artifacts.
|
||||
Download the "tdm-gcc-webdl" option. Run it, select "Create a new
|
||||
TDM-GCC installation" and choose the appropriate option for your
|
||||
|
@@ -1195,7 +1195,7 @@ void batchProcessingThread (ProcessingJob* job, BatchProcessingListener* bpl, bo
|
||||
void startBatchProcessing (ProcessingJob* job, BatchProcessingListener* bpl, bool tunnelMetaData) {
|
||||
|
||||
if (bpl)
|
||||
#if __GNUC__ == 4 && __GNUC_MINOR__ >= 8 && defined( WIN32 ) && defined(__x86_64__)
|
||||
#if __GNUC__ == 4 && __GNUC_MINOR__ == 8 && defined( WIN32 ) && defined(__x86_64__)
|
||||
// See Issue 2384 "Very bad response time on win7/64 using gcc 4.8 when queue is running"
|
||||
Glib::Thread::create(sigc::bind(sigc::ptr_fun(batchProcessingThread), job, bpl, tunnelMetaData), 0, true, true, Glib::THREAD_PRIORITY_NORMAL);
|
||||
#else
|
||||
|
@@ -68,7 +68,7 @@ void BatchQueueEntryUpdater::process (guint8* oimg, int ow, int oh, int newh, BQ
|
||||
stopped = false;
|
||||
tostop = false;
|
||||
|
||||
#if __GNUC__ == 4 && __GNUC_MINOR__ >= 8 && defined( WIN32 ) && defined(__x86_64__)
|
||||
#if __GNUC__ == 4 && __GNUC_MINOR__ == 8 && defined( WIN32 ) && defined(__x86_64__)
|
||||
#undef THREAD_PRIORITY_NORMAL
|
||||
// See Issue 2384 comment #3
|
||||
thread = Glib::Thread::create(sigc::mem_fun(*this, &BatchQueueEntryUpdater::processThread), (unsigned long int)0, true, true, Glib::THREAD_PRIORITY_NORMAL);
|
||||
|
@@ -206,7 +206,7 @@ void FileBrowserEntry::updateImage (rtengine::IImage8* img, double scale, rtengi
|
||||
param->img = img;
|
||||
param->scale = scale;
|
||||
param->cropParams = cropParams;
|
||||
#if __GNUC__ == 4 && __GNUC_MINOR__ >= 8 && defined( WIN32 ) && defined(__x86_64__)
|
||||
#if __GNUC__ == 4 && __GNUC_MINOR__ == 8 && defined( WIN32 ) && defined(__x86_64__)
|
||||
g_idle_add_full (G_PRIORITY_DEFAULT, updateImageUI, param, NULL);
|
||||
#else
|
||||
g_idle_add_full (G_PRIORITY_LOW, updateImageUI, param, NULL);
|
||||
|
@@ -69,7 +69,7 @@ public:
|
||||
inactive_waiting_(false)
|
||||
{
|
||||
int threadCount = 1;
|
||||
#if !(defined( WIN32 ) && defined( __x86_64__ ))
|
||||
#if !(__GNUC__ == 4 && __GNUC_MINOR__ == 8 && defined( WIN32 ) && defined(__x86_64__))
|
||||
// See Issue 2431 for explanation
|
||||
#ifdef _OPENMP
|
||||
threadCount = omp_get_num_procs();
|
||||
|
Reference in New Issue
Block a user