forked from OpenModelica/OMCompiler-3rdParty
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gc.txt
22 lines (19 loc) · 798 Bytes
/
gc.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
To update gc and libatomic_ops
cd OMCompiler/3rdParty
# make a branch
> git checkout -b update_gc_NUMBER
# get the commits for bdwgc
> git subtree pull --squash --prefix gc https://github.com/ivmai/bdwgc master
# fix any conflicts we might have
# make omc be compiled/linked only against our version of libgc:
> cd gc
> sed -i s/libgc/libomcgc/g Makefile.am configure.ac cord/cord.am
> commit the changes
# get the commits for libatomic_ops
> git subtree pull --squash --prefix gc/libatomic_ops https://github.com/ivmai/libatomic_ops master
# fix any conflicts we might have
> commit the changes
Push your changes to your local github repo:
# for OMCompiler-3rdParty in your github USER space
> git add remote USER https://github.com/USER/OMCompiler-3rdParty.git
> git push USER update_gc_NUMBER