aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-10-15 02:43:50 +0200
committerClifford Wolf <clifford@clifford.at>2014-10-15 02:43:50 +0200
commit3445a933a5f2c23b697b96948f44fb1b2012dbdb (patch)
treee9cf94a6ce19cb962108ac28718e8c14dc99b008
parent8cea352a6aafa80d397d8a6a7d195c1378dcb324 (diff)
downloadyosys-3445a933a5f2c23b697b96948f44fb1b2012dbdb.tar.gz
yosys-3445a933a5f2c23b697b96948f44fb1b2012dbdb.tar.bz2
yosys-3445a933a5f2c23b697b96948f44fb1b2012dbdb.zip
Fixed MXE build
-rw-r--r--Makefile2
-rw-r--r--kernel/log.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f408c40fd..a43f378e1 100644
--- a/Makefile
+++ b/Makefile
@@ -95,7 +95,7 @@ CXXFLAGS := $(filter-out -fPIC,$(CXXFLAGS))
LDFLAGS := $(filter-out -rdynamic,$(LDFLAGS)) -s
LDLIBS := $(filter-out -lrt,$(LDLIBS))
ABCMKARGS += ARCHFLAGS="-DSIZEOF_VOID_P=4 -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DWIN32_NO_DLL -x c++ -fpermissive -w"
-ABCMKARGS += LIBS="lib/x86/pthreadVC2.lib -s" READLINE=0
+ABCMKARGS += LIBS="lib/x86/pthreadVC2.lib -s" READLINE=0 CC="$(CXX)" CXX="$(CXX)"
EXE = .exe
else ifneq ($(CONFIG),none)
diff --git a/kernel/log.cc b/kernel/log.cc
index 2cae6a636..19eb38c73 100644
--- a/kernel/log.cc
+++ b/kernel/log.cc
@@ -21,7 +21,7 @@
#include "libs/sha1/sha1.h"
#include "backends/ilang/ilang_backend.h"
-#ifndef _WIN32
+#if !defined(_WIN32) || defined(__MINGW32__)
# include <sys/time.h>
#endif
@@ -51,7 +51,7 @@ static struct timeval initial_tv = { 0, 0 };
static bool next_print_log = false;
static int log_newline_count = 0;
-#ifdef _WIN32
+#if defined(_WIN32) && !defined(__MINGW32__)
// this will get time information and return it in timeval, simulating gettimeofday()
int gettimeofday(struct timeval *tv, struct timezone *tz)
{
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462