Displaying 3 results from an estimated 3 matches for "toinstall".
2020 Oct 11
3
Installing bioconduction packages in connection with loading an R package
...le approach and / or perhaps suggest a solution. (I would guess that there are many CRAN packages that use bioc-packages, so other people must have faced this challenge before).
Thanks in advance.
Best regards
S?ren
.onAttach<-function(libname, pkgname) {
## package startup check
toinstall=c(
"graph",
"Rgraphviz",
"RBGL"
)
already_installed <- sapply(toinstall, function(pkg)
requireNamespace(pkg, quietly=TRUE))
if (any(!already_installed)){
packageStartupMessage("Need to install the following...
2005 Oct 28
0
up2date error
...20, in batchRun
batch.init()
File "/usr/share/rhn/up2date_client/up2dateBatch.py", line 65, in init
self.__findPackagesToUpdate()
File "/usr/share/rhn/up2date_client/up2dateBatch.py", line 112, in __findPack
agesToUpdate
self.availableUpdates = plist.getPackagesToInstall()
File "/usr/share/rhn/up2date_client/packageList.py", line 643, in getPackages
ToInstall
self.__findBestArchPackages()
File "/usr/share/rhn/up2date_client/packageList.py", line 612, in __findBestA
rchPackages
del self.packagesToUpdate[pkey]
-akop
2017 Oct 31
3
Cross compiling for Baremetal ARM without using GCC
...-none-eabi-6-2017-q2-update
MYCFLAGS="--specs=nosys.specs -mcpu=cortex-m4 -mthumb -mfloat-abi=softfp -mfpu=fpv4-sp-d16"
cmake -G "Ninja" \
-DCMAKE_CROSSCOMPILING=True \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=${HOME}/clang/toInstall \
-DLLVM_TABLEGEN=${MYHOSTBIN}/llvm-tblgen \
-DCLANG_TABLEGEN=${MYHOSTBIN}/clang-tblgen \
-DLLVM_DEFAULT_TARGET_TRIPLE=arm-none-eabi \
-DLLVM_TARGET_ARCH=ARM \
-DLLVM_TARGETS_TO_BUILD=ARM \
-DLLVM_ENABLE_LTO=F...