cpanse / protViz

Visualizing and Analyzing Mass Spectrometry Related Data in Proteomics
https://CRAN.R-project.org/package=protViz
GNU General Public License v3.0
11 stars 3 forks source link

clang 17 warnings #20

Closed cpanse closed 9 months ago

cpanse commented 9 months ago
cpanse commented 9 months ago
#!/bin/bash

export CXX=clang++-17
export CC=clang-17
export PKG_CFLAG="-pendantic -O2 -Wall"
export PKG_CXXFLAGS="-pedantic -O2 -Wall"

Rpkg="protViz"
while true;
do
  R CMD build --no-build-vignettes ${Rpkg} && R CMD INSTALL ${Rpkg}_0.7.8.tar.gz
  sleep 10;
done

exit 0