Skip to content

Commit

Permalink
some modifications to upload to CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
ChingChuan-Chen committed Feb 20, 2017
1 parent 9933f10 commit 6d1beb6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: RcppBlaze
Type: Package
Title: 'Rcpp' Integration for the 'Blaze' high-performance C++ math library
Title: 'Rcpp' Integration for the 'Blaze' High-Performance C++ Math Library
Version: 0.1.0
Date: 2017-02-21
Author: Ching-Chuan Chen, Klaus Iglberger, Georg Hager, Christian Godenschwager,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## RcppBlaze

[![Build Status](https://travis-ci.org/ChingChuan-Chen/RcppBlaze.svg)](https://travis-ci.org/ChingChuan-Chen/RcppBlaze) [![Build status](https://ci.appveyor.com/api/projects/status/ip1s0avhreksvgd5?svg=true)](https://ci.appveyor.com/project/ChingChuan-Chen/rcppblaze) [![License](http://img.shields.io/badge/license-GPL%20%28%3E=%202%29-brightgreen.svg?style=flat)](http://www.gnu.org/licenses/gpl-2.0.html) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) [![CRAN](http://www.r-pkg.org/badges/version/RcppBlaze)](http://cran.r-project.org/package=RcppBlaze) [![Downloads](http://cranlogs.r-pkg.org/badges/RcppBlaze?color=brightgreen)](http://www.r-pkg.org/pkg/RcppBlaze)
[![Build Status](https://travis-ci.org/ChingChuan-Chen/RcppBlaze.svg)](https://travis-ci.org/ChingChuan-Chen/RcppBlaze) [![Build status](https://ci.appveyor.com/api/projects/status/ip1s0avhreksvgd5?svg=true)](https://ci.appveyor.com/project/ChingChuan-Chen/rcppblaze) [![License](http://img.shields.io/badge/license-GPL%20%28%3E=%202%29-brightgreen.svg?style=flat)](http://www.gnu.org/licenses/gpl-2.0.html) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

### Overview

Expand Down
11 changes: 11 additions & 0 deletions src/registerDynamicSymbols.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// fixed NOTE by the solution on https://github.com/RcppCore/Rcpp/issues/636
// RegisteringDynamic Symbols

#include <R.h>
#include <Rinternals.h>
#include <R_ext/Rdynload.h>

void R_init_RcppBlaze(DllInfo* info) {
R_registerRoutines(info, NULL, NULL, NULL, NULL);
R_useDynamicSymbols(info, TRUE);
}

0 comments on commit 6d1beb6

Please sign in to comment.