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

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



Title: GitLab

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

Commits:

  • 284a4024
    by Timo Aaltonen at 2023-12-02T12:28:49+02:00
    tests: Bump c++ to 13.
    
  • a4920af0
    by Timo Aaltonen at 2023-12-02T12:28:58+02:00
    release to sid
    

2 changed files:

Changes:

  • debian/changelog
    1
    +glslang (13.1.1-2) unstable; urgency=medium
    
    2
    +
    
    3
    +  * tests: Bump c++ to 13.
    
    4
    +
    
    5
    + -- Timo Aaltonen <tjaalton@debian.org>  Sat, 02 Dec 2023 12:28:51 +0200
    
    6
    +
    
    1 7
     glslang (13.1.1-1) unstable; urgency=medium
    
    2 8
     
    
    3 9
       * New upstream release.
    

  • 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++11 -o trivial trivial.cpp -lglslang -lMachineIndependent -lGenericCodeGen -lHLSL -lOGLCompiler -lOSDependent -lSPIRV -lpthread
    
    51
    +"${CXX}" -std=c++13 -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++11 -o trivial trivial.cpp $("$PKG_CONFIG" --cflags --libs glslang)
    
    58
    +"${CXX}" -std=c++13 -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++11 -o spirv spirv.cpp $("$PKG_CONFIG" --cflags --libs spirv)
    
    63
    +"${CXX}" -std=c++13 -o spirv spirv.cpp $("$PKG_CONFIG" --cflags --libs spirv)
    
    64 64
     test -x spirv
    
    65 65
     ./spirv
    
    66 66
     
    


  • Reply to: