Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Frida
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coenen, Joachim
Frida
Commits
06cb9a6a
Commit
06cb9a6a
authored
6 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Plain Diff
This is release 2.4.2d
parents
ba7f3331
6eb740ce
Branches
master
Branches containing commit
Tags
v2.4.2d
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
howto-pack-tgz.txt
+6
-5
6 additions, 5 deletions
howto-pack-tgz.txt
pub/CHANGELOG
+10
-3
10 additions, 3 deletions
pub/CHANGELOG
pub/CMakeLists.txt
+14
-3
14 additions, 3 deletions
pub/CMakeLists.txt
pub/lib/CMakeLists.txt
+0
-1
0 additions, 1 deletion
pub/lib/CMakeLists.txt
with
30 additions
and
12 deletions
howto-pack-tgz.txt
+
6
−
5
View file @
06cb9a6a
...
...
@@ -37,11 +37,11 @@ k tag v$V # Yes! Our IT wants version tags to start with "v".
# to delete erroneous tag: git tag -d $X; git push origin :refs/tags/$X
kush --tags
ssh
wuttke
@a mv /www/apps/src/frida/frida2.* /www/apps/src/frida/old/
ssh
apps
@a mv /www/apps/src/frida/frida2.* /www/apps/src/frida/old/
scp ~/data/tgz/$A.tgz
wuttke
@a:/www/apps/src/frida/
scp ~/data/tgz/$A.tgz
apps
@a:/www/apps/src/frida/
scp /G/f2/pub/CHANGELOG
wuttke
@a:/www/apps/src/frida/frida2-CHANGELOG
scp /G/f2/pub/CHANGELOG
apps
@a:/www/apps/src/frida/frida2-CHANGELOG
### advertise
http://apps.jcns.fz-juelich.de/doku/frida -> News
...
...
@@ -53,12 +53,13 @@ git checkout devel
git rebase master
cd /G/f2/pub
vi CMakeLists.txt # version becomes "post-<release>"
vi CHANGELOG # add header for next release
kcom -m "Starting post-$V"
kush
cd /G/f2/pub
mkdir
my
build
cd
my
build
mkdir build
cd build
cmake ..
m -j7
mi
...
...
This diff is collapsed.
Click to expand it.
pub/CHANGELOG
+
10
−
3
View file @
06cb9a6a
Release 2.4.2d of 9jan19:
- Correct main CMakeLists.txt (policy made conditional)
- Remove obsolete pthread
- Requires lmfit8.2 and libcerf1.11 (important bug fixes)
Release 2.4.2c of 21dec18:
- Fit outcomes mad/mrd: maximum abs/rel deviation of fit from data points
- Recommends lmfit8.1 and libcerf1.10.
- Recommends lmfit8.1
- Remove yaml-cpp from 3rdparty, not needed after all it seems
Release 2.4.2b of 2oct18:
...
...
@@ -9,7 +16,7 @@ Release 2.4.2b of 2oct18:
Release 2.4.2a of 19sep18:
- Requires lmfit8.0, to get parameter error estimates
.
- Requires lmfit8.0, to get parameter error estimates
- New commands cpe, cpc(a,r,p) to print parameter errors or covariance matrices.
- Update googletest, and wrap as in other projects
- Prevent building with wrong yaml-cpp version
...
...
@@ -37,7 +44,7 @@ Release 2.4.1a of 27feb18:
- Gnuplot limits with full accuracy
- programmable tictac color and other improvements in PS graphics
- Changed dependences:
- requires lmfit 7.0
.
- requires lmfit 7.0
Release 2.4.0g of 11aug17:
...
...
This diff is collapsed.
Click to expand it.
pub/CMakeLists.txt
+
14
−
3
View file @
06cb9a6a
cmake_minimum_required
(
VERSION 2.8.12 FATAL_ERROR
)
cmake_policy
(
SET CMP0077 NEW
)
cmake_minimum_required
(
VERSION 3.8 FATAL_ERROR
)
if
(
POLICY CMP0077
)
cmake_policy
(
SET CMP0077 NEW
)
# since 3.13
endif
()
set
(
CMAKE_MODULE_PATH
${
CMAKE_SOURCE_DIR
}
/cmake/modules
)
include
(
PreventInSourceBuilds
)
...
...
@@ -8,7 +10,7 @@ option(PEDANTIC "Compile with pedantic warnings" ON)
project
(
Frida
)
set
(
Frida_VERSION 2.4.2
c
)
set
(
Frida_VERSION 2.4.2
d
)
set
(
CMAKE_CXX_STANDARD 11
)
set
(
CMAKE_POSITION_INDEPENDENT_CODE ON
)
...
...
@@ -40,6 +42,7 @@ find_package(KWW REQUIRED)
find_package
(
Cerf REQUIRED
)
find_package
(
LMFit REQUIRED
)
find_package
(
Gnuplot REQUIRED
)
message
(
STATUS
"All required packages found"
)
add_subdirectory
(
readplus
)
add_subdirectory
(
trivia
)
...
...
@@ -49,10 +52,18 @@ add_subdirectory(src)
add_subdirectory
(
share
)
add_subdirectory
(
man
)
message
(
STATUS
"Now configuring gtest"
)
set
(
gtest_disable_pthreads ON
)
add_subdirectory
(
3rdparty/gtest
)
message
(
STATUS
"Now configuring utest"
)
add_subdirectory
(
utest
)
# unit tests
message
(
STATUS
"Now configuring ftest"
)
add_subdirectory
(
ftest
)
# functional tests (run Frida with given script)
# --- Additional tests to be activated when needed ---
message
(
STATUS
"Now configuring ptest"
)
add_subdirectory
(
ptest
)
# performance tests
# add_subdirectory(readplus/test) # interactive readline test
message
(
STATUS
"End of main/CMakeLists.txt"
)
This diff is collapsed.
Click to expand it.
pub/lib/CMakeLists.txt
+
0
−
1
View file @
06cb9a6a
...
...
@@ -95,7 +95,6 @@ target_link_libraries(${library_name}
${
readplus_LIBRARY
}
${
fridatrivia_LIBRARY
}
${
fridaplot_LIBRARY
}
pthread
${
FFTW_LIBRARIES
}
${
KWW_LIBRARIES
}
${
Cerf_LIBRARIES
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment