[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/vulkan/glslang][debian-unstable] 2 commits: tests: Bump c++ standard to 17.



Title: GitLab

Timo Aaltonen pushed to branch debian-unstable at X Strike Force / vulkan / glslang

Commits:

  • c46e4b1f
    by Timo Aaltonen at 2023-12-03T20:12:34+02:00
    tests: Bump c++ standard to 17.
    
  • f4e21ecd
    by Timo Aaltonen at 2023-12-03T20:12:47+02:00
    release to sid
    

2 changed files:

Changes:

  • debian/changelog
    1
    +glslang (13.1.1-3) unstable; urgency=medium
    
    2
    +
    
    3
    +  * tests: Bump c++ standard to 17.
    
    4
    +
    
    5
    + -- Timo Aaltonen <tjaalton@debian.org>  Sun, 03 Dec 2023 20:12:35 +0200
    
    6
    +
    
    1 7
     glslang (13.1.1-2) unstable; urgency=medium
    
    2 8
     
    
    3 9
       * tests: Bump c++ to 13.
    

  • debian/tests/glslang-dev
    ... ... @@ -48,19 +48,19 @@ EOF
    48 48
     
    
    49 49
     # This is hard-coded because there used to be no pkg-config, but matches
    
    50 50
     # what renderdoc does.
    
    51
    -"${CXX}" -std=c++13 -o trivial trivial.cpp -lglslang -lMachineIndependent -lGenericCodeGen -lHLSL -lOGLCompiler -lOSDependent -lSPIRV -lpthread
    
    51
    +"${CXX}" -std=c++17 -o trivial trivial.cpp -lglslang -lMachineIndependent -lGenericCodeGen -lHLSL -lOGLCompiler -lOSDependent -lSPIRV -lpthread
    
    52 52
     test -x trivial
    
    53 53
     ./trivial
    
    54 54
     
    
    55 55
     # Or with the pkg-config metadata.
    
    56 56
     # Deliberately word-splitting the output of pkg-config:
    
    57 57
     # shellcheck disable=SC2046
    
    58
    -"${CXX}" -std=c++13 -o trivial trivial.cpp $("$PKG_CONFIG" --cflags --libs glslang)
    
    58
    +"${CXX}" -std=c++17 -o trivial trivial.cpp $("$PKG_CONFIG" --cflags --libs glslang)
    
    59 59
     test -x trivial
    
    60 60
     ./trivial
    
    61 61
     
    
    62 62
     # shellcheck disable=SC2046
    
    63
    -"${CXX}" -std=c++13 -o spirv spirv.cpp $("$PKG_CONFIG" --cflags --libs spirv)
    
    63
    +"${CXX}" -std=c++17 -o spirv spirv.cpp $("$PKG_CONFIG" --cflags --libs spirv)
    
    64 64
     test -x spirv
    
    65 65
     ./spirv
    
    66 66
     
    


  • Reply to: