sh19910711 / git-contest

Git extension for the online judges
https://rubygems.org/gems/git-contest
MIT License
11 stars 5 forks source link

C++11 support in the UVa driver #15

Closed osund closed 10 years ago

osund commented 10 years ago

UVa now supports C++11 using language ID 5. Some way to specify that you want to submit as C++11 would be nice. Or maybe just replace the old one (3) with the new one (5)?

C++11 4.8.2 - GNU C++ Compiler with options: -lm -lcrypt -O2 -std=c++11 -pipe -DONLINE_JUDGE
sh19910711 commented 10 years ago

It's good news.

I am thinking about the followings:

  1. Mapping C++11 to ID 5 in the driver.
  2. Improving the feature for mapping "file extension" to "language type"
    • to be user-configurable
      • (ex1: ".cpp" -> "C++03" or "C++11")
      • (ex2: ".py" -> "Python 2" or "Python 3")
    • issue #16
sh19910711 commented 10 years ago