blob: 7db7fb44741ad40851dedd38cf82da9ebb62a714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
= Host-specific information ====================================================
$> hostname; uname -msr
w-r1-p1.s19.be
Darwin 16.7.0 x86_64
$> date
Fri Jul 5 20:39:50 CEST 2019
$> gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
$> clang --version
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
= User files collection ========================================================
Collecting user files from Vogsphere
Repository URL: auto-exam/2019/c-piscine-exam-00/exam_20190705/cacharle
= Git history ==================================================================
$> git -C /var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/tmpWSUHVh/user log --pretty='%H - %an, %ad : %s'
aee71077430e4cb04d7151c5422572a6ccd97167 - Exam 42, Fri Jul 5 20:37:38 2019 +0200 : exam00 ft_atoi
a39f6ce8235aec04c798cf602000ab71a8be0361 - Exam 42, Fri Jul 5 19:25:56 2019 +0200 : ft_strrev return corr
d7079124e81f8d1d030d31f59ca1fa2a1e2eb8f9 - Exam 42, Fri Jul 5 19:23:52 2019 +0200 : exam00 ft_strrev
9a061d46ec225b60d5798839c9343d3dcb47a21e - Exam 42, Fri Jul 5 18:57:38 2019 +0200 : exam00 ft_putstr
cf5957fe28f503c7637a640ca229743385364c1d - Exam 42, Fri Jul 5 18:47:39 2019 +0200 : exam00 maff_alpha.c
1bff6951e5d37fb9f911e6cf93afdb9a2a079a64 - Exam 42, Fri Jul 5 18:38:16 2019 +0200 : exam00 ft_countdown
1ea27768767e32d773e78820d481b20a4d108c5b - Exam 42, Fri Jul 5 18:23:38 2019 +0200 : exam only_z
= Collected files ==========================================
$> ls -lAR /var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/tmpWSUHVh/user
total 8
-rw-r--r-- 1 deepthought deepthought 1635 Jul 5 20:39 __GIT_HISTORY
drwxr-xr-x 3 deepthought deepthought 102 Jul 5 20:39 ft_atoi
drwxr-xr-x 3 deepthought deepthought 102 Jul 5 20:39 ft_countdown
drwxr-xr-x 3 deepthought deepthought 102 Jul 5 20:39 ft_putstr
drwxr-xr-x 3 deepthought deepthought 102 Jul 5 20:39 ft_strrev
drwxr-xr-x 3 deepthought deepthought 102 Jul 5 20:39 maff_alpha
drwxr-xr-x 3 deepthought deepthought 102 Jul 5 20:39 only_z
/var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/tmpWSUHVh/user/ft_atoi:
total 8
-rw-r--r-- 1 deepthought deepthought 830 Jul 5 20:39 ft_atoi.c
/var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/tmpWSUHVh/user/ft_countdown:
total 8
-rw-r--r-- 1 deepthought deepthought 176 Jul 5 20:39 ft_countdown.c
/var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/tmpWSUHVh/user/ft_putstr:
total 8
-rw-r--r-- 1 deepthought deepthought 100 Jul 5 20:39 ft_putstr.c
/var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/tmpWSUHVh/user/ft_strrev:
total 8
-rw-r--r-- 1 deepthought deepthought 320 Jul 5 20:39 ft_strrev.c
/var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/tmpWSUHVh/user/maff_alpha:
total 8
-rw-r--r-- 1 deepthought deepthought 243 Jul 5 20:39 maff_alpha.c
/var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/tmpWSUHVh/user/only_z:
total 8
-rw-r--r-- 1 deepthought deepthought 85 Jul 5 20:39 only_z.c
= ft_atoi ======================================================================
$> gcc -Wextra -Wall -Werror main.c ft_atoi.c -o user_exe
duplicate symbol _main in:
/var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/main-778510.o
/var/folders/94/qc05t_2x0hl2j9mv5vr_t2mw0000gq/T/ft_atoi-1b1dec.o
ld: 1 duplicate symbol for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Could not compile 'user_exe'
Grade: 0
= Final grade: 0 ===============================================================
|